This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "The OpenBSC GSM Base Station Controller (+MSC/HLR/SGSN)".
The branch, sysmocom/ipa_nano3G has been updated
discards 14d527a0243e9e268d7505a03e1b6d970b4d4f15 (commit)
discards 20e97facea65eb9b25662a1f43de256940176134 (commit)
via a97962765d95a6825bd0fe563226df09bf1dee2d (commit)
via 4f9989048a5763ddb736730db9b4b3e3ddd4ffb9 (commit)
via 293ca96757daa25be078af013cae4a37734a8bc5 (commit)
This update added new revisions after undoing existing revisions. That is
to say, the old revision is not a strict subset of the new revision. This
situation occurs when you --force push a change and generate a repository
containing something like this:
* -- * -- B -- O -- O -- O (14d527a0243e9e268d7505a03e1b6d970b4d4f15)
\
N -- N -- N (a97962765d95a6825bd0fe563226df09bf1dee2d)
When this happens we assume that you've already had alert emails for all
of the O revisions, and so we here report only the revisions in the N
branch from the common base, B.
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
http://cgit.osmocom.org/openbsc/commit/?id=a97962765d95a6825bd0fe563226df09…
commit a97962765d95a6825bd0fe563226df09bf1dee2d
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Mon Apr 25 15:40:54 2016 +0200
RAB Assignment: IuPS + IuCS: use shorter 32 bit IP address format
This is needed for the ip.access nano3G femto cell.
Change-Id: I80fe96505c24cf8730e48f24a34004a51e95ee32
-----------------------------------------------------------------------
Summary of changes:
openbsc/include/openbsc/iu.h | 2 ++
openbsc/src/libiu/iu.c | 23 +++++++++++++++++++----
openbsc/src/libmsc/osmo_msc.c | 12 ++++++++----
openbsc/tests/db/db_test.c | 3 +++
4 files changed, 32 insertions(+), 8 deletions(-)
hooks/post-receive
--
The OpenBSC GSM Base Station Controller (+MSC/HLR/SGSN)
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "The OpenBSC GSM Base Station Controller (+MSC/HLR/SGSN)".
The branch, sysmocom/iu has been updated
discards 20e97facea65eb9b25662a1f43de256940176134 (commit)
via 4f9989048a5763ddb736730db9b4b3e3ddd4ffb9 (commit)
via 293ca96757daa25be078af013cae4a37734a8bc5 (commit)
This update added new revisions after undoing existing revisions. That is
to say, the old revision is not a strict subset of the new revision. This
situation occurs when you --force push a change and generate a repository
containing something like this:
* -- * -- B -- O -- O -- O (20e97facea65eb9b25662a1f43de256940176134)
\
N -- N -- N (4f9989048a5763ddb736730db9b4b3e3ddd4ffb9)
When this happens we assume that you've already had alert emails for all
of the O revisions, and so we here report only the revisions in the N
branch from the common base, B.
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
http://cgit.osmocom.org/openbsc/commit/?id=4f9989048a5763ddb736730db9b4b3e3…
commit 4f9989048a5763ddb736730db9b4b3e3ddd4ffb9
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Tue Oct 11 02:24:53 2016 +0200
IuCS: rapidly release connections
Do the same as we do in 2G: release the connection as soon as nothing else
is pending for a given subscriber.
Before, osmo-cscn would wait for the UE "to get bored" and send an Iu
release. But the CN should stay lean on connections. Also, 25.413[1] in section
7, 6th point states:
"While the Iu release is managed from the CN, the RNC has the capability to
request the release of all Iu connection resources from the corresponding Iu
connection."
So far we did not manage Iu release from osmo-cscn at all.
Use the same mechanism we use in 2G: from msc_release_connection(), just before
freeing the gsm_subscriber_conn, invoke a CN initiated Iu Release command to
the UE.
This works around OS#1816 ("USSD only works when IuCS is released", on nano3G),
because the Iu conn is now released right after every signalling, so that
typically no two requests will use the same conn.
In iu.h/iu.c, add iu_tx_release(), absorbing almost all of the code from
ranap_handle_co_iu_rel_req().
Add stub to db_test.c, necessary to build it without linking libiu.
[1] 3GPP TS 25.413 v12.4.0 Release 12 / ETSI TS 125 413 V12.4.0 (2015-04)
Related: OS#1816
Change-Id: Ic12bd6f3666f6fd42bd6d9fdae1c93abee3b6786
http://cgit.osmocom.org/openbsc/commit/?id=293ca96757daa25be078af013cae4a37…
commit 293ca96757daa25be078af013cae4a37734a8bc5
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Tue Oct 11 00:50:05 2016 +0200
IuCS: don't remove Iu conn until release
Don't remove the gsm_subscriber_connection without an Iu Release.
From the 2G paradigm to close a subscriber connection as soon as nothing else
is pending, osmo-cscn frequently calls msc_release_connection() to see whether
a conn has anything pending, or discards it.
In 3G however, we so far don't actively release IuCS connections from the MSC
side, but wait until the IuCS is released from the UE side. So the conn is
often discarded even though the IuCS stays open and valid, which confuses the
situation: before the UE releases a bit later, we would try to page the
subscriber unsuccessfully, because the UE expects to already be connected.
To first fix the discrepancy of Iu vs. subscr release, never discard
gsm_subscriber_connections when msc_release_connection() is called.
This creates a "lazy" CN that keeps connections open as long as the UE will
tolerate. It is really fast in sending many SMS in close succession, but is
certainly a bad CN design choice: we should rather stay lean on connections.
A subsequent commit will change this, but I decided to keep this commit as a
reference, for when we'd like to test situations that should re-use an
established connection.
Change-Id: I012378cfa432d791146db387554ec1909de05297
-----------------------------------------------------------------------
Summary of changes:
openbsc/include/openbsc/iu.h | 2 ++
openbsc/src/libiu/iu.c | 23 +++++++++++++++++++----
openbsc/src/libmsc/osmo_msc.c | 12 ++++++++----
openbsc/tests/db/db_test.c | 3 +++
4 files changed, 32 insertions(+), 8 deletions(-)
hooks/post-receive
--
The OpenBSC GSM Base Station Controller (+MSC/HLR/SGSN)
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "The OpenBSC GSM Base Station Controller (+MSC/HLR/SGSN)".
The branch, sysmocom/iu has been updated
via 20e97facea65eb9b25662a1f43de256940176134 (commit)
via c358b5ec1b686efd2702180e52566f873d9e95c1 (commit)
from 8a9f12dc2f69bf3a4e861cc9a81b71bdc5f13180 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
-----------------------------------------------------------------------
Summary of changes:
openbsc/src/libmsc/gsm_04_08.c | 4 ++++
openbsc/src/libmsc/osmo_msc.c | 4 ++++
2 files changed, 8 insertions(+)
hooks/post-receive
--
The OpenBSC GSM Base Station Controller (+MSC/HLR/SGSN)
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "The OpenBSC GSM Base Station Controller (+MSC/HLR/SGSN)".
The branch, sysmocom/ipa_nano3G has been updated
discards bfaa4d6e64bdc42baa684ec2586861a93466c4c8 (commit)
via 14d527a0243e9e268d7505a03e1b6d970b4d4f15 (commit)
via 20e97facea65eb9b25662a1f43de256940176134 (commit)
via c358b5ec1b686efd2702180e52566f873d9e95c1 (commit)
This update added new revisions after undoing existing revisions. That is
to say, the old revision is not a strict subset of the new revision. This
situation occurs when you --force push a change and generate a repository
containing something like this:
* -- * -- B -- O -- O -- O (bfaa4d6e64bdc42baa684ec2586861a93466c4c8)
\
N -- N -- N (14d527a0243e9e268d7505a03e1b6d970b4d4f15)
When this happens we assume that you've already had alert emails for all
of the O revisions, and so we here report only the revisions in the N
branch from the common base, B.
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
http://cgit.osmocom.org/openbsc/commit/?id=14d527a0243e9e268d7505a03e1b6d97…
commit 14d527a0243e9e268d7505a03e1b6d970b4d4f15
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Mon Apr 25 15:40:54 2016 +0200
RAB Assignment: IuPS + IuCS: use shorter 32 bit IP address format
This is needed for the ip.access nano3G femto cell.
Change-Id: I80fe96505c24cf8730e48f24a34004a51e95ee32
http://cgit.osmocom.org/openbsc/commit/?id=20e97facea65eb9b25662a1f43de2569…
commit 20e97facea65eb9b25662a1f43de256940176134
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Tue Oct 11 00:50:05 2016 +0200
IuCS: fix: no paging when conn is already open
The 2G paradigm is to close a subscriber connection as soon as nothing else is
pending. Hence the code frequently calls msc_release_connection() to see
whether a conn can be discarded.
In 3G however, we so far don't actively release IuCS connections from the MSC
side, but wait until the IuCS is released from the UE side. So the IuCS often
stays open and valid even though msc_release_connection() has already discarded
the gsm_subscriber_connection for it. Thus, when further events occured, we
would try to page the subscriber even though the UE expects to already be
connected, with auth and ciphering established.
To fix, never discard gsm_subscriber_connections when msc_release_connection()
is called.
An alternative fix would be to actively send an Iu Release when
msc_release_connection() is invoked, so that auth and ciphering is
re-established for the next pending event (which might be better, even).
Change-Id: I012378cfa432d791146db387554ec1909de05297
http://cgit.osmocom.org/openbsc/commit/?id=c358b5ec1b686efd2702180e52566f87…
commit c358b5ec1b686efd2702180e52566f873d9e95c1
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Tue Oct 11 01:05:22 2016 +0200
IuCS: detect whether a conn is already secure
If a CM Service Request is received on an already secure IuCS connection,
we so far didn't notice and started to authenticate again. The UE would
readily renew its authentication, but then our state got stuck since
ciphering was already established. Instead, don't authenticate again when
integrity protection is already established.
Change-Id: I3c01fe58276ba0ad918f2cd30cc3dca7c6663e68
-----------------------------------------------------------------------
Summary of changes:
openbsc/src/libmsc/gsm_04_08.c | 4 ++++
openbsc/src/libmsc/osmo_msc.c | 4 ++++
2 files changed, 8 insertions(+)
hooks/post-receive
--
The OpenBSC GSM Base Station Controller (+MSC/HLR/SGSN)
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Osmocom code for Iuh interface".
The branch, master has been updated
via 793b273a70528766f1726d57f37376cfa6d707bc (commit)
from a44cb48c4656b30d80f4e165c33598d3f8e6e32c (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
http://cgit.osmocom.org/osmo-iuh/commit/?id=793b273a70528766f1726d57f37376c…
commit 793b273a70528766f1726d57f37376cfa6d707bc
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Mon Oct 10 13:34:38 2016 +0200
fix build: look for generated sources in builddir, not srcdir
Fixes 'make check' from a different dir than the source tree.
Change-Id: I97606dadef3c2184f9538b0198029047cc3af71c
-----------------------------------------------------------------------
Summary of changes:
src/tests/Makefile.am | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
hooks/post-receive
--
Osmocom code for Iuh interface
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Osmocom network interface library".
The branch, sysmocom/sctp has been updated
discards b830719b392dc96fd7987fb3dfba31a92a6fa38b (commit)
via b878d31a05e2e50ad9c39c918652b8561d716c1e (commit)
via d0b6eb477712b707313dfb731e188ae5439b4cd0 (commit)
via e168a1798bc9590d0c7c4f938e437cb9e74aaa53 (commit)
This update added new revisions after undoing existing revisions. That is
to say, the old revision is not a strict subset of the new revision. This
situation occurs when you --force push a change and generate a repository
containing something like this:
* -- * -- B -- O -- O -- O (b830719b392dc96fd7987fb3dfba31a92a6fa38b)
\
N -- N -- N (b878d31a05e2e50ad9c39c918652b8561d716c1e)
When this happens we assume that you've already had alert emails for all
of the O revisions, and so we here report only the revisions in the N
branch from the common base, B.
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
http://cgit.osmocom.org/libosmo-netif/commit/?id=b878d31a05e2e50ad9c39c9186…
commit b878d31a05e2e50ad9c39c918652b8561d716c1e
Author: Daniel Willmann <dwillmann(a)sysmocom.de>
Date: Wed Jan 6 16:41:44 2016 +0100
stream.c: Handle SCTP in osmo_stream_srv_recv()
-----------------------------------------------------------------------
Summary of changes:
configure.ac | 10 ++++++++++
tests/osmo-pcap-test/configure.ac | 7 +++++++
2 files changed, 17 insertions(+)
hooks/post-receive
--
Osmocom network interface library
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "SCCP Library".
The branch, sysmocom/iu has been updated
discards c1307ee64d25f4b19397bcf4791ba4c85d1dbe79 (commit)
discards c9467124c9284c95d9035d829d4ac601fcba083c (commit)
discards e5586a66338f1c1792bc921b34de67bf838625cc (commit)
discards fe97ae7955f95e5959db856e2501b89ba88450d2 (commit)
discards d08d0e9f52e152092df72c886a4643dead836412 (commit)
discards 9b84554e53281704326221740fdd5e4b2c24a83c (commit)
discards 052264835a7f82af9a4cfa020f81278cf02194e6 (commit)
discards 981f7158bdfccdd24155a4a39ded6db51eeb241f (commit)
discards cb8a09117eeb2428ac566a5771144fafc023e8d9 (commit)
discards 0b10826bfdf9b964d3e9d079468799e7cede8b44 (commit)
discards 82833537de3800c37dbabed9f6e801aab1531bf0 (commit)
discards 559376ed83009d3d15b4c5e1d536ea9f22d36bd4 (commit)
discards f05a72fa556c9a6256719a413cdd9cb6b0ee84f5 (commit)
discards dba1f771b90edddd89146a50788dde2523756405 (commit)
discards e400ec3b3adbfd19cff524b78481ba1a1e1de710 (commit)
discards ab5081e19c0233cf69a544c1f508f149f7134bc5 (commit)
discards 4ad390c815f364fdb4b79a4bcd3a141a38d27aa6 (commit)
discards 773ea5a6b73132030bc7ee2f9f438432ce148b4d (commit)
discards a3e1c384a17bba0cb1dbaa9f6aa92828019e623f (commit)
discards bea7a7339aa9a7308f7b79481dd78c18ed1135a1 (commit)
discards e5064742834c562abef5fd9258d51936107e663b (commit)
discards 28eb62a7455f6feae234677dd79cf1bb88178942 (commit)
discards e805be08343ec14697c78c4de189090a0af74ea6 (commit)
discards d918b7f2619200561e7e320395d876835933edfb (commit)
discards aa8a781b74d54258cba76d00f46811dab8b303e9 (commit)
discards efd05f97037015c7c40daf9e2e16574bda1696f7 (commit)
via a992226a9c723721a6c9210243de8a2242a059be (commit)
via dd186964062c0ac68d270e50e1c1abe47385ae23 (commit)
via 105764f2b341cf9b48432b31a0048c9cd37068b3 (commit)
via fb2a496af6f3db2386c51c726b58293637ed9922 (commit)
via 02ea95cc4e35fc55cf2e429cc6a875989dc61384 (commit)
via f69faf6aab246094dc24b4b1cef2e275d9f4a414 (commit)
via f66515c7b8a56be22f682d146631429ff0ba55e7 (commit)
via 5575cc4fd210cf9a57290d04d3d044d7bd2e39fb (commit)
via afcea0a304de2084889765dcb62b430e8e8f231a (commit)
via 4c2219d679a0d8c8f96e22efaf18a288ba0eeb73 (commit)
via 2375c9f26437f27d27853f501aa4416eeb482f14 (commit)
via 14d514f6644495d2757abdc6243f66062449c366 (commit)
via 96216c4f9e3413be223c1da286e56dc93ca3e279 (commit)
via 13937f61fe9cce61e67f5f77b04e707101aa9c8d (commit)
via ae6c52c651d966a13752b7dad4fd97feed2dca86 (commit)
via 322de72043f675e43359418b27d83b0d206b1439 (commit)
via 5f132384e3564f0c4056dcdd57ee14fb048cba63 (commit)
via 161c406b43f99d9d2aa1cea89a12e928d5e5875f (commit)
via 89281797a3a6de8c831c5584c826b6396e689ac9 (commit)
via 676e738d8291681d7bb856543ddf74e7d3e19cb2 (commit)
via 465f7af6db26c8a2806e1dfc64213066d0266c23 (commit)
via cf492156eb3d3b566e28dfd4081c2e8d786a8188 (commit)
via 2c9d6078db3803635ef732c7b3d1f4792068c560 (commit)
via 3da3df999b12fba5ab95b7986e6cf36666e6e713 (commit)
via 07b75ad14c225a775e712786c79d134696544912 (commit)
via c680e719a5d3f27f26c0a4b096edf880fbdad34f (commit)
via d6c7da8cc94289cfef47e7f998c068ecfe7c843c (commit)
via 48372dad0edb96b4dce194481765a6ad3ad7eb56 (commit)
This update added new revisions after undoing existing revisions. That is
to say, the old revision is not a strict subset of the new revision. This
situation occurs when you --force push a change and generate a repository
containing something like this:
* -- * -- B -- O -- O -- O (c1307ee64d25f4b19397bcf4791ba4c85d1dbe79)
\
N -- N -- N (a992226a9c723721a6c9210243de8a2242a059be)
When this happens we assume that you've already had alert emails for all
of the O revisions, and so we here report only the revisions in the N
branch from the common base, B.
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
http://cgit.osmocom.org/libosmo-sccp/commit/?id=a992226a9c723721a6c9210243d…
commit a992226a9c723721a6c9210243de8a2242a059be
Author: Neels Hofmeyr <neels(a)hofmeyr.de>
Date: Mon Jul 11 19:20:02 2016 +0200
fix for FreeBSD: ifdef SCTP_AUTHENTICATION_INDICATION
Don't print SCTP_AUTHENTICATION_INDICATION if it isn't defined.
This helps the FreeBSD build in particular.
Change-Id: Iaff5067c84b4d3ccda913c1f44b4bb0c210f14e5
http://cgit.osmocom.org/libosmo-sccp/commit/?id=dd186964062c0ac68d270e50e1c…
commit dd186964062c0ac68d270e50e1c1abe47385ae23
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Mon May 2 18:02:56 2016 +0200
fix: use proper disconnect prim param type
For the N-DISCONNECT prim, parse CREF, RLC and RLSD from the proper parameter
struct type: osmo_scu_disconn_param instead of osmo_scu_connect_param.
Before this, the conn_id ended up in the wrong place and the other side always
received a zero conn_id.
Tested only for the RLSD case, which fixes Iu-Release message evaluation for
all except the very first SUA conn received by the CN components.
In all three cases, set:
* param->responding_addr to conn->called_addr.
* param->originator to OSMO_SCCP_ORIG_UNDEFINED.
http://cgit.osmocom.org/libosmo-sccp/commit/?id=105764f2b341cf9b48432b31a00…
commit 105764f2b341cf9b48432b31a0048c9cd37068b3
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Mon May 2 17:57:48 2016 +0200
cosmetic: sua.c: comments
Add some human readable names.
http://cgit.osmocom.org/libosmo-sccp/commit/?id=fb2a496af6f3db2386c51c726b5…
commit fb2a496af6f3db2386c51c726b58293637ed9922
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Wed Apr 13 19:08:18 2016 +0200
parse SCCP src+dst addresses
In order to receive a Paging command with a valid RANAP SSN, decode the SCCP
source and destination address IEs. This is used by hnbgw to forward a Paging
from CN to RNC.
This may be done more generally as soon as more IEs need parsing of their sub
parts. For now, iterate the higher level IE's data chunk and obtain the address
sub part IEs without storing sub part locations.
http://cgit.osmocom.org/libosmo-sccp/commit/?id=02ea95cc4e35fc55cf2e429cc6a…
commit 02ea95cc4e35fc55cf2e429cc6a875989dc61384
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Thu Apr 14 15:05:49 2016 +0200
sua_accept_cp(): return error on alloc failure (CID #57684)
http://cgit.osmocom.org/libosmo-sccp/commit/?id=f69faf6aab246094dc24b4b1cef…
commit f69faf6aab246094dc24b4b1cef2e275d9f4a414
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Thu Apr 14 15:04:39 2016 +0200
sccp_create_sccp_addr(): fix NULL dereference
Only add gti to msg if gti is present.
Fixes coverity CID #57683
http://cgit.osmocom.org/libosmo-sccp/commit/?id=f66515c7b8a56be22f682d14663…
commit f66515c7b8a56be22f682d146631429ff0ba55e7
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Wed Apr 13 16:20:41 2016 +0200
add another #ifdef SCTP_SENDER_DRY_EVENT (missing from previous commit)
http://cgit.osmocom.org/libosmo-sccp/commit/?id=5575cc4fd210cf9a57290d04d3d…
commit 5575cc4fd210cf9a57290d04d3d044d7bd2e39fb
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Fri Apr 8 00:43:31 2016 +0200
add #ifdef SCTP_SENDER_DRY_EVENT
Some older SCTP implementations don't have the SCTP_SENDER_DRY_EVENT.
Fix the coverity build by encapsulating its logging in an #ifdef.
http://cgit.osmocom.org/libosmo-sccp/commit/?id=afcea0a304de2084889765dcb62…
commit afcea0a304de2084889765dcb62b430e8e8f231a
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Mon Apr 4 15:20:08 2016 +0200
cosmetic: rename static sua_cli_conn_cb() to sua_cli_read_cb()
The read cb fed to osmo_stream_cli_set_read_cb() is called sua_cli_conn_cb(),
which is confusing. Call it _read_ instead of _conn_.
http://cgit.osmocom.org/libosmo-sccp/commit/?id=4c2219d679a0d8c8f96e22efaf1…
commit 4c2219d679a0d8c8f96e22efaf18a288ba0eeb73
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Mon Apr 4 18:31:44 2016 +0200
cosmetic: log more sctp notifications
http://cgit.osmocom.org/libosmo-sccp/commit/?id=2375c9f26437f27d27853f501aa…
commit 2375c9f26437f27d27853f501aa4416eeb482f14
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Mon Apr 4 16:30:58 2016 +0200
remove two compiler warnings for unused variables
http://cgit.osmocom.org/libosmo-sccp/commit/?id=14d514f6644495d2757abdc6243…
commit 14d514f6644495d2757abdc6243f66062449c366
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Wed Mar 30 12:45:38 2016 +0200
cosmetic: add comments for GT, PC, SSN to help noobs finding their way
http://cgit.osmocom.org/libosmo-sccp/commit/?id=96216c4f9e3413be223c1da286e…
commit 96216c4f9e3413be223c1da286e56dc93ca3e279
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Wed Mar 30 12:44:21 2016 +0200
sccp_helpers: add convenience function for RANAP unitdata
http://cgit.osmocom.org/libosmo-sccp/commit/?id=13937f61fe9cce61e67f5f77b04…
commit 13937f61fe9cce61e67f5f77b04e707101aa9c8d
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Wed Mar 30 12:43:04 2016 +0200
sccp_helpers: add osmo_ prefix to all functions
http://cgit.osmocom.org/libosmo-sccp/commit/?id=ae6c52c651d966a13752b7dad4f…
commit ae6c52c651d966a13752b7dad4fd97feed2dca86
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Wed Mar 30 13:39:04 2016 +0200
sccp_helpers: adjust .h include and copyright
http://cgit.osmocom.org/libosmo-sccp/commit/?id=322de72043f675e43359418b27d…
commit 322de72043f675e43359418b27d83b0d206b1439
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Tue Sep 27 17:08:55 2016 +0200
sccp_helpers.h/.c: fix: apply rename of osmo_sua_link to osmo_sccp_link
Change-Id: If8b09bb05297ebf663b4a04d3cc094a6a8087f53
http://cgit.osmocom.org/libosmo-sccp/commit/?id=5f132384e3564f0c4056dcdd57e…
commit 5f132384e3564f0c4056dcdd57ee14fb048cba63
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Wed Mar 30 12:41:00 2016 +0200
Add sccp_helpers.[hc] moved from osmo-iuh, 1:1 at first
Move here unchanged first, so we're able to see the modifications in diffs.
Pending changes will follow in subsequent patches.
Moved from osmo-iuh 3da8608b6ad014fc74536dbb49019704fd425b8c, which was before
the rename of osmo_sua_link and osmo_sua_user to osmo_sccp_link and
osmo_sccp_user, so this will not compile.
Change-Id: Iae0c58c5f1eb00a685de70add0d5257e4316c6d5
http://cgit.osmocom.org/libosmo-sccp/commit/?id=161c406b43f99d9d2aa1cea89a1…
commit 161c406b43f99d9d2aa1cea89a12e928d5e5875f
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Mon Mar 7 14:35:42 2016 +0100
add RFC 3868 (SUA) spec in HTML
http://cgit.osmocom.org/libosmo-sccp/commit/?id=89281797a3a6de8c831c5584c82…
commit 89281797a3a6de8c831c5584c826b6396e689ac9
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Mon Mar 7 14:16:37 2016 +0100
add some debug logging
http://cgit.osmocom.org/libosmo-sccp/commit/?id=676e738d8291681d7bb856543dd…
commit 676e738d8291681d7bb856543ddf74e7d3e19cb2
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Mon Mar 7 14:16:04 2016 +0100
add comment (meaning of COIT)
http://cgit.osmocom.org/libosmo-sccp/commit/?id=465f7af6db26c8a2806e1dfc642…
commit 465f7af6db26c8a2806e1dfc64213066d0266c23
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Mon Mar 7 14:15:17 2016 +0100
SUA COIT: send dest ref nr, not dest addr
See RFC 3868 3.3.11
https://tools.ietf.org/html/rfc3868#section-3.3.11http://cgit.osmocom.org/libosmo-sccp/commit/?id=cf492156eb3d3b566e28dfd4081…
commit cf492156eb3d3b566e28dfd4081c2e8d786a8188
Author: Harald Welte <laforge(a)gnumonks.org>
Date: Mon Jan 4 12:35:49 2016 +0100
HACK: start to handle SCTP notifications
http://cgit.osmocom.org/libosmo-sccp/commit/?id=2c9d6078db3803635ef732c7b3d…
commit 2c9d6078db3803635ef732c7b3d1f4792068c560
Author: Harald Welte <laforge(a)gnumonks.org>
Date: Sat Dec 26 23:36:27 2015 +0100
sua: Ensure that a SUA client will continuously try to reconnect
http://cgit.osmocom.org/libosmo-sccp/commit/?id=3da3df999b12fba5ab95b7986e6…
commit 3da3df999b12fba5ab95b7986e6cf36666e6e713
Author: Harald Welte <laforge(a)gnumonks.org>
Date: Sat Dec 26 23:35:31 2015 +0100
sua: call conn_disconnect() in sua_disconnect_req()
disconnect is not a class3/4 operation. We simply generate + send the
DISCONNECT.ind message to the remote side and drop all local state about the
connection.
http://cgit.osmocom.org/libosmo-sccp/commit/?id=07b75ad14c225a775e712786c79…
commit 07b75ad14c225a775e712786c79d134696544912
Author: Harald Welte <laforge(a)gnumonks.org>
Date: Sat Dec 26 23:34:54 2015 +0100
sua: Fix typo in log message
http://cgit.osmocom.org/libosmo-sccp/commit/?id=c680e719a5d3f27f26c0a4b096e…
commit c680e719a5d3f27f26c0a4b096edf880fbdad34f
Author: Harald Welte <laforge(a)gnumonks.org>
Date: Sat Dec 26 23:34:03 2015 +0100
allow user to give private data to osmo_sua_user_create()
... which can be resolved from the prim_cb() by calling
osmo_sccp_link_get_user_priv().
-----------------------------------------------------------------------
Summary of changes:
configure.ac | 10 ++++++++++
1 file changed, 10 insertions(+)
hooks/post-receive
--
SCCP Library
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "The OpenBSC GSM Base Station Controller (+MSC/HLR/SGSN)".
The branch, master has been updated
via 5275c152e597e7c8e1d80ea38103892af27d0879 (commit)
from 2d66bb20997646b752a2dbfd3c552392eb127313 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
http://cgit.osmocom.org/openbsc/commit/?id=5275c152e597e7c8e1d80ea38103892a…
commit 5275c152e597e7c8e1d80ea38103892af27d0879
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Mon Oct 10 02:33:59 2016 +0200
Revert "bsc: count the usage of codec by setting the lchan active"
This reverts commit 38e9ea3f7f385c6660c5958970af5c71adc1682b.
Introduced a reproducable segfault, because msg->trx is not actually set/used
in the openbsc code paths.
Program received signal SIGSEGV, Segmentation fault.
count_codecs (lchan=0x1, bts=<optimized out>) at ../../../src/libbsc/abis_rsl.c:104
104 rate_ctr_inc(&bts->network->bsc_ctrs->ctr[BSC_CTR_CODEC_V1_FR]);
(gdb) bt
#0 count_codecs (lchan=0x1, bts=<optimized out>) at ../../../src/libbsc/abis_rsl.c:104
#1 0x0000000000425661 in abis_rsl_rx_dchan (msg=<optimized out>) at ../../../src/libbsc/abis_rsl.c:1516
#2 abis_rsl_rcvmsg (msg=0x8143f0) at ../../../src/libbsc/abis_rsl.c:2611
#3 0x00007ffff71420d0 in handle_ts1_read (bfd=<optimized out>) at ../../src/input/ipaccess.c:271
#4 ipaccess_fd_cb (bfd=0x815af8, what=1) at ../../src/input/ipaccess.c:386
#5 0x00007ffff7779b62 in osmo_fd_disp_fds (_eset=0x7fffffffe590, _wset=0x7fffffffe510, _rset=0x7fffffffe490) at ../../src/select.c:149
#6 osmo_select_main (polling=polling@entry=0) at ../../src/select.c:189
#7 0x0000000000406fac in main (argc=<optimized out>, argv=0x7fffffffe738) at ../../../src/osmo-nitb/bsc_hack.c:385
-----------------------------------------------------------------------
Summary of changes:
openbsc/include/openbsc/gsm_data.h | 10 ----------
openbsc/src/libbsc/abis_rsl.c | 35 -----------------------------------
2 files changed, 45 deletions(-)
hooks/post-receive
--
The OpenBSC GSM Base Station Controller (+MSC/HLR/SGSN)
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Osmocom A-bis protcol interface library".
The branch, master has been updated
via a0ff942e927e771875a183c045b3a1676a7d579c (commit)
from 24796f21475248f07884da8e22c2c9178f030a5d (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
http://cgit.osmocom.org/libosmo-abis/commit/?id=a0ff942e927e771875a183c045b…
commit a0ff942e927e771875a183c045b3a1676a7d579c
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Thu Oct 6 15:43:38 2016 +0200
Really fix order of set_connected_mode and set_remote_addr
This reverts commit c77c2a6aa13accbc558888ab788d1148eb9aeb1a,
and explicitly sets connected mode to zero for set_remote_addr to work around
internal libortp problems. See https://osmocom.org/issues/1661#note-15.
Related: OS#1661
Change-Id: I9d146c3bd76e02685b09278167b56029152221a0
-----------------------------------------------------------------------
Summary of changes:
src/trau/osmo_ortp.c | 18 ++++++++++++------
1 file changed, 12 insertions(+), 6 deletions(-)
hooks/post-receive
--
Osmocom A-bis protcol interface library
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Osmocom BTS-side code (Abis, scheduling, ...)".
The branch, master has been updated
via 8b39ff8bcfba2bb4444fb375bfedb24900ae4f52 (commit)
via f5494e84e898f947190466d30d5f932bac0fadf9 (commit)
from 3f192f229170b3f0359b03e3fafbcf80a21c6001 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
http://cgit.osmocom.org/osmo-bts/commit/?id=8b39ff8bcfba2bb4444fb375bfedb24…
commit 8b39ff8bcfba2bb4444fb375bfedb24900ae4f52
Author: Philipp <pmaier(a)sysmocom.de>
Date: Wed Oct 5 13:45:24 2016 +0200
octopy: fixing renamed constant
The constant cOCTVC1_HW_CLOCK_SYNC_MGR_STATE_ENUM_UNUSED in header
file octvc1/hw/octvc1_hw_api.h has been renamed to
cOCTVC1_HW_CLOCK_SYNC_MGR_STATE_ENUM_IDLE. This commit adds an ifdef
decision in to code to ensure that older header files will still work.
Change-Id: I4c0b976d29689ace06741c5943434fc33ee2df14
http://cgit.osmocom.org/osmo-bts/commit/?id=f5494e84e898f947190466d30d5f932…
commit f5494e84e898f947190466d30d5f932bac0fadf9
Author: Philipp <pmaier(a)sysmocom.de>
Date: Wed Oct 5 13:52:00 2016 +0200
octphy: reintroducing multi-trx support
The multi-trx had to be removed because of build conflicts
with octphy header that lack the struct members for needed
to support multi-trx.
For details see the following revert-commits:
ed6b48e4a5fba07c3ecccf689991799ae13a2aaa
c9a1f284acf518cb4e62c3898e20398ed53807c3
This commit reintroduces multi trx support and ads an ifdef
decision to ensure that header files without multi-trx
support still work.
Change-Id: I7f9b2906cc149c817183745b4c96bcc7f9ebdad0
-----------------------------------------------------------------------
Summary of changes:
configure.ac | 1 +
include/osmo-bts/phy_link.h | 5 +++++
src/osmo-bts-octphy/l1_oml.c | 20 +++++++++++++++++++-
src/osmo-bts-octphy/l1_utils.c | 8 ++++++++
src/osmo-bts-octphy/octphy_hw_api.c | 7 +++++++
5 files changed, 40 insertions(+), 1 deletion(-)
hooks/post-receive
--
Osmocom BTS-side code (Abis, scheduling, ...)