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, neels/wip has been updated
via 966a358faf765eaba9ecc1ae881164391dcd27f1 (commit)
from bee7c53b04cc43766d89bae78aa5c8719d4a0e2a (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-sccp/commit/?id=966a358faf765eaba9ecc1ae881…
commit 966a358faf765eaba9ecc1ae881164391dcd27f1
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.
-----------------------------------------------------------------------
Summary of changes:
src/sua.c | 2 ++
1 file changed, 2 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 9bcb1a56cbec710cbfa49ae6623c10595eab08ec (commit)
from adb86759daa80a484eef4b5a24bc0ce0de0a0763 (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=9bcb1a56cbec710cbfa49ae6623c1059…
commit 9bcb1a56cbec710cbfa49ae6623c10595eab08ec
Author: Holger Hans Peter Freyther <holger(a)moiji-mobile.com>
Date: Wed Apr 6 22:41:12 2016 +0200
ctrl: Extend ctrl command to optionally handle alg+ki
Extend the existing ctrl command to be able to specify the
algorithm and Ki. In contrast to the VTY no size check is
done. Together with the VTY this code only supports a small
part of what is supported by libosmocore.
The algorithm and ki are considered optional but if a valid
algorithm other than "none" is passed, a KI must be passed as
well.
Extend the test coverage by passing the potential values. It
is not verified that the KI/algorithm is stored.
-----------------------------------------------------------------------
Summary of changes:
openbsc/src/libmsc/ctrl_commands.c | 60 ++++++++++++++++++++++++++++++++++++--
openbsc/tests/ctrl_test_runner.py | 27 +++++++++++++++++
2 files changed, 85 insertions(+), 2 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 "An utility library for Open Source Mobile Communications".
The branch, master has been updated
via b9bb0b02acdcd2b56e2821e454d73affa044e199 (commit)
from ea50732df21442c8d33806d30040d6d81f7aab90 (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/libosmocore/commit/?id=b9bb0b02acdcd2b56e2821e454d7…
commit b9bb0b02acdcd2b56e2821e454d73affa044e199
Author: Max <msuraev(a)sysmocom.de>
Date: Thu Apr 7 11:01:52 2016 +0200
Add missing docs for bssgp bvc reset vty command
Fixes the build failure with extended tests enabled.
-----------------------------------------------------------------------
Summary of changes:
src/gb/gprs_bssgp_vty.c | 10 ++++++++--
1 file changed, 8 insertions(+), 2 deletions(-)
hooks/post-receive
--
An utility library for Open Source Mobile Communications
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, max/natext has been deleted
was a35b992f69c9761d1b56c92a7762347dcad02f7e
-----------------------------------------------------------------------
a35b992f69c9761d1b56c92a7762347dcad02f7e NAT: reload BSCs config dynamically
-----------------------------------------------------------------------
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, master has been updated
via adb86759daa80a484eef4b5a24bc0ce0de0a0763 (commit)
via 2826df56b2af5a6a0f20e5a9bcf1d50a1130f0ba (commit)
via de392254ff05a5304ef0bbd351314d74b2ffd1e3 (commit)
from 7dd2eed6d3426ce27dc168e46a4db8b705608de4 (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=adb86759daa80a484eef4b5a24bc0ce0…
commit adb86759daa80a484eef4b5a24bc0ce0de0a0763
Author: Holger Hans Peter Freyther <holger(a)moiji-mobile.com>
Date: Fri Apr 1 20:31:11 2016 +0200
db: If creating a subscriber in the db fails, return NULL
We should not return a subscriber in case it was not written to
the database. Instead free the memory allocated and return NULL.
Callers in gsm_04_08.c are prepared to have the creation fail.
Related: OS Issue #1657
http://cgit.osmocom.org/openbsc/commit/?id=2826df56b2af5a6a0f20e5a9bcf1d50a…
commit 2826df56b2af5a6a0f20e5a9bcf1d50a1130f0ba
Author: Holger Hans Peter Freyther <holger(a)moiji-mobile.com>
Date: Fri Apr 1 20:21:03 2016 +0200
subscr: Make db_create_subscriber fail on duplicates
The issue of db_create_subscriber updating an already existing subscr
is that the same subscriber will then have two entries in the active
subscribers list. In general this will break assumptions that a subscr
can be compared by comparing the pointer.
In the case of the VTY this was not an issue as the created subscr
was immediately destroyed again but it is better to avoid this problem.
Change the VTY command to find the subscriber and then call sync to
have the updated time set. The side-effect is we will now have two
queries for the subscriber. Once through subscr_get_by_imsi and once
through db_create_subscriber.
Change the db_create_subscriber to fail if a subscriber already exists,
and add a testcase for this behavior and do not updated the 'updated'
timestamp of an already existing subscriber.
Add a testcase for this behavior.
Related: OS Issue #1657
http://cgit.osmocom.org/openbsc/commit/?id=de392254ff05a5304ef0bbd351314d74…
commit de392254ff05a5304ef0bbd351314d74b2ffd1e3
Author: Holger Hans Peter Freyther <holger(a)moiji-mobile.com>
Date: Fri Apr 1 19:44:00 2016 +0200
subscr: Add testcase creating an already created subscriber
Add testcase to issue the subscriber create twice. db_create_subscriber
in db.c will first try to find the subscriber and if it exists, it will
update the "updated" column in the database.
Related: OS Issue #1657
-----------------------------------------------------------------------
Summary of changes:
openbsc/src/libmsc/db.c | 15 ++++++-------
openbsc/src/libmsc/vty_interface_layer3.c | 16 +++++++++-----
openbsc/tests/db/db_test.c | 6 +++++-
openbsc/tests/vty_test_runner.py | 36 +++++++++++++++++++++++++++++++
4 files changed, 58 insertions(+), 15 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, master has been updated
via 7dd2eed6d3426ce27dc168e46a4db8b705608de4 (commit)
from c6a65511f326340783f0e837c6eb58b0cf2c6abc (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=7dd2eed6d3426ce27dc168e46a4db8b7…
commit 7dd2eed6d3426ce27dc168e46a4db8b705608de4
Author: Max <msuraev(a)sysmocom.de>
Date: Mon Apr 4 15:30:53 2016 +0200
Ignore vty test byproducts
-----------------------------------------------------------------------
Summary of changes:
openbsc/.gitignore | 2 ++
1 file changed, 2 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 d7ad0ac2387f895bdb9fb5d0dea9e7a5734f64f3 (commit)
via 998726054e03373c47acce0d057c13ad3e364b74 (commit)
via ad00d2bee5182c4a9c010838a9d6dbfeb9548d92 (commit)
via 8c2b4ec6d6e0c09455480ba38dd7681f6c66d4a0 (commit)
via a4540be792728bf45eacf2e6561f95e68a9f7a91 (commit)
via 02be4e393304c1a7fb40cd065c8baf0e7e95b460 (commit)
via 0ff24430a1a411b999003722dc91e42967b248e3 (commit)
via 1befe6b22160df17ce7aa32fb0060b2b9563e929 (commit)
via 6341f4d41043104177d6aa083e5fe19cdeaee554 (commit)
via 7c28f6f4380d4018f982b0a6e0d2c45cedaeb3e2 (commit)
via d8013d1f8caf1c38c9b4191f0bbb411f6a4ff9d6 (commit)
via 8f4cd86904b702041e44a491a45becd0fec9758c (commit)
from e5c5525baebac7e784f801f91fc12fca700a3c4e (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:
src/hnbgw.c | 3 +-
src/hnbgw_cn.c | 16 ++++++++
src/ranap_common.c | 20 ++++++++--
src/tests/Makefile.am | 2 +-
src/tests/hnb-test.c | 32 +++++++++++++---
src/tests/test-helpers.c | 94 +++++++++++++++++++++++++++++++++++++++++++++-
src/tests/test-helpers.err | 3 ++
src/tests/test-helpers.ok | 13 +++++++
src/tests/testsuite.at | 3 +-
9 files changed, 173 insertions(+), 13 deletions(-)
create mode 100644 src/tests/test-helpers.err
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 code for Iuh interface".
The branch, sysmocom/iu-cs has been updated
discards 857d984fa426930657e417c2c9c96c5b1fd8acf6 (commit)
discards 98f6bad97ff6ff43848b5d7d473e5eb667242548 (commit)
discards ba212167713528179effe366235a0e3adda05438 (commit)
discards 2ba28e399d4052e3b9cebec4c327d1d4cb64ba8f (commit)
discards 6ed96d1336d1117967d62b10b30c3616a1e251c3 (commit)
discards 7ca3f9338f7086b87c54b6a7050310b24c786c09 (commit)
discards 25dfdeecf071f49e67fd747fe341dc5fdf5e41fb (commit)
discards b22212767720afa709cdeb84463590e60c0efdf6 (commit)
discards e5d8c4ca428a692d282467edc741da7a4e0f85c6 (commit)
discards a45e22d2976bc0bff4f5a045c8608dbf9ab79730 (commit)
via 7ba6bd8faae15680a059490ddac4eb73dabce25d (commit)
via d7ad0ac2387f895bdb9fb5d0dea9e7a5734f64f3 (commit)
via 998726054e03373c47acce0d057c13ad3e364b74 (commit)
via ad00d2bee5182c4a9c010838a9d6dbfeb9548d92 (commit)
via 8c2b4ec6d6e0c09455480ba38dd7681f6c66d4a0 (commit)
via a4540be792728bf45eacf2e6561f95e68a9f7a91 (commit)
via 02be4e393304c1a7fb40cd065c8baf0e7e95b460 (commit)
via 0ff24430a1a411b999003722dc91e42967b248e3 (commit)
via 1befe6b22160df17ce7aa32fb0060b2b9563e929 (commit)
via 6341f4d41043104177d6aa083e5fe19cdeaee554 (commit)
via 7c28f6f4380d4018f982b0a6e0d2c45cedaeb3e2 (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 (857d984fa426930657e417c2c9c96c5b1fd8acf6)
\
N -- N -- N (7ba6bd8faae15680a059490ddac4eb73dabce25d)
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 -----------------------------------------------------------------
-----------------------------------------------------------------------
Summary of changes:
src/hnbgw.c | 1 +
1 file changed, 1 insertion(+)
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 code for Iuh interface".
The branch, neels/wip has been updated
discards 5698168530319151a2432f5ba6a9480f55ddc2d7 (commit)
discards 599c97682d752dbf47188d9899b820eedcbca154 (commit)
discards 12b12b1c181d1f8a025c6c0b26a20cd459e3a5d1 (commit)
via d4a01811c58bad86c792910648656d839773de5a (commit)
via 8341ace2c9c5fdcfd0c65e8d6737ef5019c09dcf (commit)
via 7ba6bd8faae15680a059490ddac4eb73dabce25d (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 (5698168530319151a2432f5ba6a9480f55ddc2d7)
\
N -- N -- N (d4a01811c58bad86c792910648656d839773de5a)
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/osmo-iuh/commit/?id=d4a01811c58bad86c792910648656d8…
commit d4a01811c58bad86c792910648656d839773de5a
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Tue Apr 5 01:20:02 2016 +0200
wip: hnb-test: receive security mode command
http://cgit.osmocom.org/osmo-iuh/commit/?id=8341ace2c9c5fdcfd0c65e8d6737ef5…
commit 8341ace2c9c5fdcfd0c65e8d6737ef5019c09dcf
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Tue Apr 5 11:53:09 2016 +0200
hnb-test: plmn_id: use 0xf for unused digit
http://cgit.osmocom.org/osmo-iuh/commit/?id=7ba6bd8faae15680a059490ddac4eb7…
commit 7ba6bd8faae15680a059490ddac4eb73dabce25d
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Thu Jan 14 12:52:53 2016 +0100
move dummy_cn to 127.0.0.2 (Iu-PS) because I'm testing Osmo-CSCN on 127.0.0.1 (Iu-CS)
-----------------------------------------------------------------------
Summary of changes:
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 code for Iuh interface".
The branch, neels/wip has been updated
discards ba4a78d27415166fd5de9b90bd2babc891144a6b (commit)
discards 8097582ce3408e6ecce51abb88f89a4116ab1e04 (commit)
discards be367d42a11d93a3727f0fcc84addcdfb831ceb3 (commit)
discards 857d984fa426930657e417c2c9c96c5b1fd8acf6 (commit)
discards 98f6bad97ff6ff43848b5d7d473e5eb667242548 (commit)
discards ba212167713528179effe366235a0e3adda05438 (commit)
discards 2ba28e399d4052e3b9cebec4c327d1d4cb64ba8f (commit)
discards 6ed96d1336d1117967d62b10b30c3616a1e251c3 (commit)
discards 7ca3f9338f7086b87c54b6a7050310b24c786c09 (commit)
discards 25dfdeecf071f49e67fd747fe341dc5fdf5e41fb (commit)
discards b22212767720afa709cdeb84463590e60c0efdf6 (commit)
discards e5d8c4ca428a692d282467edc741da7a4e0f85c6 (commit)
discards a45e22d2976bc0bff4f5a045c8608dbf9ab79730 (commit)
via 5698168530319151a2432f5ba6a9480f55ddc2d7 (commit)
via 599c97682d752dbf47188d9899b820eedcbca154 (commit)
via 12b12b1c181d1f8a025c6c0b26a20cd459e3a5d1 (commit)
via d7ad0ac2387f895bdb9fb5d0dea9e7a5734f64f3 (commit)
via 998726054e03373c47acce0d057c13ad3e364b74 (commit)
via ad00d2bee5182c4a9c010838a9d6dbfeb9548d92 (commit)
via 8c2b4ec6d6e0c09455480ba38dd7681f6c66d4a0 (commit)
via a4540be792728bf45eacf2e6561f95e68a9f7a91 (commit)
via 02be4e393304c1a7fb40cd065c8baf0e7e95b460 (commit)
via 0ff24430a1a411b999003722dc91e42967b248e3 (commit)
via 1befe6b22160df17ce7aa32fb0060b2b9563e929 (commit)
via 6341f4d41043104177d6aa083e5fe19cdeaee554 (commit)
via 7c28f6f4380d4018f982b0a6e0d2c45cedaeb3e2 (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 (ba4a78d27415166fd5de9b90bd2babc891144a6b)
\
N -- N -- N (5698168530319151a2432f5ba6a9480f55ddc2d7)
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/osmo-iuh/commit/?id=5698168530319151a2432f5ba6a9480…
commit 5698168530319151a2432f5ba6a9480f55ddc2d7
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Thu Jan 14 12:52:53 2016 +0100
move dummy_cn to 127.0.0.2 (Iu-PS) because I'm testing Osmo-CSCN on 127.0.0.1 (Iu-CS)
http://cgit.osmocom.org/osmo-iuh/commit/?id=599c97682d752dbf47188d9899b820e…
commit 599c97682d752dbf47188d9899b820eedcbca154
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Tue Apr 5 01:20:02 2016 +0200
wip: hnb-test: receive security mode command
http://cgit.osmocom.org/osmo-iuh/commit/?id=12b12b1c181d1f8a025c6c0b26a20cd…
commit 12b12b1c181d1f8a025c6c0b26a20cd459e3a5d1
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Tue Apr 5 11:53:09 2016 +0200
hnb-test: plmn_id: use 0xf for unused digit
http://cgit.osmocom.org/osmo-iuh/commit/?id=d7ad0ac2387f895bdb9fb5d0dea9e7a…
commit d7ad0ac2387f895bdb9fb5d0dea9e7a5734f64f3
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Tue Apr 5 11:52:27 2016 +0200
hnb-test: parse_mm: assert MM pdisc
http://cgit.osmocom.org/osmo-iuh/commit/?id=998726054e03373c47acce0d057c13a…
commit 998726054e03373c47acce0d057c13ad3e364b74
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Tue Apr 5 11:51:15 2016 +0200
hnb-test: on auth response, make it seq nr 2
http://cgit.osmocom.org/osmo-iuh/commit/?id=ad00d2bee5182c4a9c010838a9d6dbf…
commit ad00d2bee5182c4a9c010838a9d6dbfeb9548d92
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Mon Apr 4 19:30:14 2016 +0200
hnb-test: rx dtap: log message size
http://cgit.osmocom.org/osmo-iuh/commit/?id=8c2b4ec6d6e0c09455480ba38dd7681…
commit 8c2b4ec6d6e0c09455480ba38dd7681f6c66d4a0
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Mon Apr 4 19:27:53 2016 +0200
hnb-test: don't segfault when msgb has no l3
http://cgit.osmocom.org/osmo-iuh/commit/?id=a4540be792728bf45eacf2e6561f95e…
commit a4540be792728bf45eacf2e6561f95e68a9f7a91
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Tue Apr 5 14:27:48 2016 +0200
hnbgw: set default RNC ID to 23 (for testing)
This should ultimately be user configurable, but for now 23 is better than 0.
http://cgit.osmocom.org/osmo-iuh/commit/?id=02be4e393304c1a7fb40cd065c8baf0…
commit 02be4e393304c1a7fb40cd065c8baf0e7e95b460
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Mon Apr 4 19:29:35 2016 +0200
hnbgw: debug-log cn disconnect ind
http://cgit.osmocom.org/osmo-iuh/commit/?id=0ff24430a1a411b999003722dc91e42…
commit 0ff24430a1a411b999003722dc91e42967b248e3
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Mon Apr 4 18:33:33 2016 +0200
hnbgw: add handle_cn_conn_conf() debug logging
http://cgit.osmocom.org/osmo-iuh/commit/?id=1befe6b22160df17ce7aa32fb0060b2…
commit 1befe6b22160df17ce7aa32fb0060b2b9563e929
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Mon Apr 4 18:05:36 2016 +0200
cosmetic: add comment to hnbgw_cnlink_init()
http://cgit.osmocom.org/osmo-iuh/commit/?id=6341f4d41043104177d6aa083e5fe19…
commit 6341f4d41043104177d6aa083e5fe19cdeaee554
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Mon Apr 4 18:02:49 2016 +0200
hnbgw: set DMAIN loglevel to DEBUG by default
http://cgit.osmocom.org/osmo-iuh/commit/?id=7c28f6f4380d4018f982b0a6e0d2c45…
commit 7c28f6f4380d4018f982b0a6e0d2c45cedaeb3e2
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Tue Apr 5 11:49:53 2016 +0200
hnb-test: use gsm48_hdr_pdisc() and gsm48_hdr_msg_type() instead of bitmasks
-----------------------------------------------------------------------
Summary of changes:
hooks/post-receive
--
Osmocom code for Iuh interface