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 "UNNAMED PROJECT".
The branch, master has been updated
via 327e121a0f2b1e816cc59d1337e6f2034553f2b8 (commit)
from 1714aeaa675e129736d53fecf8ff91f54c87446a (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-pcu/commit/?id=327e121a0f2b1e816cc59d1337e6f20…
commit 327e121a0f2b1e816cc59d1337e6f2034553f2b8
Author: Max <msuraev(a)sysmocom.de>
Date: Tue Nov 21 13:01:19 2017 +0100
Add function to get max supported MS class
It's useful for allocation tests.
Change-Id: I31d503af700ec3364042ff7e661710953cacf9f8
Related: OS#2282
-----------------------------------------------------------------------
Summary of changes:
src/mslot_class.c | 5 +++++
src/mslot_class.h | 3 ++-
2 files changed, 7 insertions(+), 1 deletion(-)
hooks/post-receive
--
UNNAMED PROJECT
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 66d6d760aab222c91bec5134c228ffc13f463235 (commit)
from aa8d48cbe000f1adbed63775254fbc7ab470335b (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=66d6d760aab222c91bec5134c228ffc…
commit 66d6d760aab222c91bec5134c228ffc13f463235
Author: Neels Hofmeyr <neels(a)hofmeyr.de>
Date: Wed Dec 20 05:25:02 2017 +0100
hnbgw: hnb info: record MCC, MNC, show on 'show hnb'
Before, MCC and MNC were always reported as zero, now the output of 'show hnb all' looks like:
OsmoHNBGW> show hnb all
HNB "000295-0000154153(a)ap.ipaccess.com" MCC 901 MNC 70 LAC 11111 RAC 99 SAC 65535 CID 1048575
HNBAP ID 0 RUA ID 0
Change-Id: Iae094b36fa1cf18e07ed33914b9425368d7cd34b
-----------------------------------------------------------------------
Summary of changes:
src/Makefile.am | 2 +-
src/hnbgw_hnbap.c | 3 +--
2 files changed, 2 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 "UNNAMED PROJECT".
The branch, master has been updated
via 1714aeaa675e129736d53fecf8ff91f54c87446a (commit)
from 59e4a4fee11a966d2c72209a0e23087e20d5103d (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-pcu/commit/?id=1714aeaa675e129736d53fecf8ff91f…
commit 1714aeaa675e129736d53fecf8ff91f54c87446a
Author: Max <msuraev(a)sysmocom.de>
Date: Thu Dec 21 11:19:39 2017 +0100
Fix warnings
Fix warnings detected by compiler and coverity scan.
Change-Id: If463c7f8769e18d3df74837f0cb0f545cca9b23e
Fixes: CID181479
-----------------------------------------------------------------------
Summary of changes:
src/bts.cpp | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
hooks/post-receive
--
UNNAMED PROJECT
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 "UNNAMED PROJECT".
The branch, master has been updated
via 59e4a4fee11a966d2c72209a0e23087e20d5103d (commit)
via ee5be3a0095b4bae430032d35e3ad0716eff34ab (commit)
from c21f007277713b15d9a48d0bcc6f28aa51b4f908 (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-pcu/commit/?id=59e4a4fee11a966d2c72209a0e23087…
commit 59e4a4fee11a966d2c72209a0e23087e20d5103d
Author: Max <msuraev(a)sysmocom.de>
Date: Wed Dec 20 18:01:55 2017 +0100
TBF: add N3101 counter
Properly reset the counter when receiving valid RLCMAC block and update
it when no data is received as per 3GPP TS 44.060 §8.1.1.1
Change-Id: I2f79c6153dc4073c9d293b2824979e6381576682
Fixes: OS#2407
http://cgit.osmocom.org/osmo-pcu/commit/?id=ee5be3a0095b4bae430032d35e3ad07…
commit ee5be3a0095b4bae430032d35e3ad0716eff34ab
Author: Max <msuraev(a)sysmocom.de>
Date: Wed Dec 20 17:31:13 2017 +0100
TBF: implement independent T31xx timers
Previously TBF got single timer so the pending timer was automatically
cancelled when new one was scheduled. Let's make it more robust by
implementing independent T31 xx timers from 3GPP TS 44.060 §13.2 with
corresponding start/stop functions and counters.
The semantics of the timers is preserved as before: pending timers are
restarted unconditionally. It might be neecessary to change this later on
after spec review.
N. B. T0: used for assign/reject timeouts, have to be properly
attributed and documented first.
Change-Id: I0305873ca47534f53441247217881da59625e1f7
Related: OS#2407
-----------------------------------------------------------------------
Summary of changes:
src/bts.cpp | 21 ++++-
src/tbf.cpp | 220 +++++++++++++++++++++++++++++++++++---------------
src/tbf.h | 27 ++++++-
src/tbf_dl.cpp | 14 ++--
src/tbf_ul.cpp | 2 +-
tests/tbf/TbfTest.cpp | 4 +-
6 files changed, 209 insertions(+), 79 deletions(-)
hooks/post-receive
--
UNNAMED PROJECT
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 OpenGGSN project".
The branch, master has been updated
via e5a082d64a4abe43d3457be46ecc07df4cc5a144 (commit)
from 37c45e3998fca240b5266abd3ac883d0a35bab50 (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-ggsn/commit/?id=e5a082d64a4abe43d3457be46ecc07…
commit e5a082d64a4abe43d3457be46ecc07df4cc5a144
Author: Pau Espin Pedrol <pespin(a)sysmocom.de>
Date: Fri Dec 15 15:55:04 2017 +0100
ggsn_vty.c: Print ipv6 link-local cmd when writing config to file
Previous commit added the ipv6 link-local vty cmd but forgot to add code
to print its value in config_write_apn.
Fixes: 37c45e3998fca240b5266abd3ac883d0a35bab50
Change-Id: I08aeaa98d6dc318b7e9740d837ba4ac48cd7051c
-----------------------------------------------------------------------
Summary of changes:
ggsn/ggsn_vty.c | 2 ++
1 file changed, 2 insertions(+)
hooks/post-receive
--
The OpenGGSN project
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 "UNNAMED PROJECT".
The branch, master has been updated
via 379fb9783b1cfa1563a49cdf5a65c7b317a5e967 (commit)
from 4c283e4f4a071bdf42b6877d412775a3009e0ce4 (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/python/osmo-python-tests/commit/?id=379fb9783b1cfa1…
commit 379fb9783b1cfa1563a49cdf5a65c7b317a5e967
Author: Max <msuraev(a)sysmocom.de>
Date: Mon Dec 18 15:06:39 2017 +0100
Ignore compilation byproducts
Change-Id: Ic04a1b9411b851547ef7ce7a9b562cb290081ca9
-----------------------------------------------------------------------
Summary of changes:
.gitignore | 3 +++
1 file changed, 3 insertions(+)
hooks/post-receive
--
UNNAMED PROJECT
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, master has been updated
via 10d4815bb1b4b548ec0bc97611b2e7ac45e0ebc5 (commit)
from 6cd8d1243711f4de2f1314c7b87b972572cdec4e (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=10d4815bb1b4b548ec0bc97611b…
commit 10d4815bb1b4b548ec0bc97611b2e7ac45e0ebc5
Author: Pau Espin Pedrol <pespin(a)sysmocom.de>
Date: Fri Nov 17 12:57:25 2017 +0100
ss7: Re-bind xUA server socket after setting new IP
In osmo-stp, cmd "local-ip" inside node "listen m3ua 2905" was actually
not being applied, because the server was created + bound at "listen" command
time using NULL as IP, and at "local-ip" time the IP was changed but the
server was not re-bound using the new IP, so it kept listening at
0.0.0.0.
With this patch, we defer binding the socket to "local-ip" cmd time,
after the IP has been applied.
As a result, if no "local-ip" command is provided, then the bind never
happens, which means it is now mandatory that users of osmo_ss7_xua_server_create
API not using osmo_ss7_xua_server_set_local_host call new provided API
osmo_ss7_xua_server_bind. Another new API osmo_ss7_bind_all_instances is
provided to easily make sure all servers are bound after configuration
process. This is specially important for servers which doesn't contain
the "local-ip" parameter.
Users of osmo_sccp_simple_server API are not affected by this change,
and they not requrie to call any new API.
Furthermore, using osmo_ss7_xua_server_bind in VTY code ensures the xUA
server is automatically bound to the new address if the operator changes
the "local-ip" cmd at runtime.
Related: OS#2647
Change-Id: I79738963d633bec70705ff159c5b2127cd498aa2
-----------------------------------------------------------------------
Summary of changes:
include/osmocom/sigtran/osmo_ss7.h | 5 ++++
src/osmo_ss7.c | 59 ++++++++++++++++++++++++++++++++------
src/osmo_ss7_vty.c | 4 +++
src/sccp_user.c | 5 ++++
stp/stp_main.c | 2 ++
5 files changed, 66 insertions(+), 9 deletions(-)
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 "UNNAMED PROJECT".
The branch, master has been updated
via 4c283e4f4a071bdf42b6877d412775a3009e0ce4 (commit)
from e5731e03b6bc1af147203d35c1d4112c6a7e8e94 (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/python/osmo-python-tests/commit/?id=4c283e4f4a071bd…
commit 4c283e4f4a071bdf42b6877d412775a3009e0ce4
Author: Neels Hofmeyr <neels(a)hofmeyr.de>
Date: Tue Dec 19 14:49:13 2017 +0100
README: mention twisted_ipa.py in scripts section, not as lib
Change-Id: Ie536d61c5af89a530533b22d8ecab1c804a38289
-----------------------------------------------------------------------
Summary of changes:
README | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
hooks/post-receive
--
UNNAMED PROJECT
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 "UNNAMED PROJECT".
The branch, master has been updated
via e5731e03b6bc1af147203d35c1d4112c6a7e8e94 (commit)
via be76f4d8a82440ab019caf237d1b734209f1aae3 (commit)
from 150a6eac9be9eae13b9eb5fa287c925f0cf19ab2 (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/python/osmo-python-tests/commit/?id=e5731e03b6bc1af…
commit e5731e03b6bc1af147203d35c1d4112c6a7e8e94
Author: Neels Hofmeyr <neels(a)hofmeyr.de>
Date: Tue Dec 19 14:48:29 2017 +0100
README: mention osmo_interact_* and osmo_verify_transcript_*
Move the libs/scripts that they (possibly) replace below the new additions and
mention that they are superseded.
Change-Id: Ic50e15d6cb6e94b6e171d954d75b94e09b22d548
http://cgit.osmocom.org/python/osmo-python-tests/commit/?id=be76f4d8a82440a…
commit be76f4d8a82440ab019caf237d1b734209f1aae3
Author: Neels Hofmeyr <neels(a)hofmeyr.de>
Date: Tue Dec 19 13:46:57 2017 +0100
add cmdline doc to osmo_interact_* and osmo_verify_*
The tools are so far badly under-documented. Alleviate that by comprehensive
description and examples shown by -h option output. Hint at that from the
README.
Change-Id: I94dcad257558b917cb54fc877122594cd164f496
-----------------------------------------------------------------------
Summary of changes:
README | 11 +++++--
osmopy/osmo_interact/common.py | 9 +++---
osmopy/osmo_interact/ctrl.py | 64 +++++++++++++++++++++++++++++++++++--
osmopy/osmo_interact/vty.py | 72 ++++++++++++++++++++++++++++++++++++++++--
4 files changed, 145 insertions(+), 11 deletions(-)
hooks/post-receive
--
UNNAMED PROJECT
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 aa8d48cbe000f1adbed63775254fbc7ab470335b (commit)
via 1eb19cf690b473307eda73ce0c2dbcb75019c166 (commit)
via ee03876dd171375d827cbec6d3c24d8ad9128671 (commit)
from ade7e8b19bf423e9090dca67c906bc4bf8242df2 (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=aa8d48cbe000f1adbed63775254fbc7…
commit aa8d48cbe000f1adbed63775254fbc7ab470335b
Author: Philipp Maier <pmaier(a)sysmocom.de>
Date: Tue Dec 19 17:48:38 2017 +0100
ranap_msg_factory: remove unusued variable
remove variable i in ranap_new_msg_sec_mod_compl() as it is not
used (compiler warning)
Change-Id: I93d9e95109fb78bc6cc161745b9e14de8b623d4f
http://cgit.osmocom.org/osmo-iuh/commit/?id=1eb19cf690b473307eda73ce0c2dbcb…
commit 1eb19cf690b473307eda73ce0c2dbcb75019c166
Author: Philipp Maier <pmaier(a)sysmocom.de>
Date: Tue Dec 19 17:46:36 2017 +0100
ranap_msg_factory: check IE encoder return codes
in many functions, the returncode (rc) from the IE encoder functions
is not checked.
Add a return code check and log error message (like it is already
done in the functions which already check the return code)
Change-Id: I592c0794a94c50fde5c574b1e9bc581eb28af4ae
http://cgit.osmocom.org/osmo-iuh/commit/?id=ee03876dd171375d827cbec6d3c24d8…
commit ee03876dd171375d827cbec6d3c24d8ad9128671
Author: Philipp Maier <pmaier(a)sysmocom.de>
Date: Tue Dec 19 17:42:36 2017 +0100
iu: iu_helpers: add functions to decode ip/port from rab-ass
add ranap_transp_assoc_decode() to decode the port information from
an RANAP_IuTransportAssociation_t field.
add ranap_transp_layer_addr_decode() to decode the ip-address from
an RANAP_TransportLayerAddress_t field.
Change-Id: I3c1a0455c5f25cae41ee19229d6daf299e023062
-----------------------------------------------------------------------
Summary of changes:
include/osmocom/ranap/iu_helpers.h | 6 +++++
src/iu_helpers.c | 53 +++++++++++++++++++++++++++++++++++++-
src/ranap_msg_factory.c | 49 +++++++++++++++++++++++++++++------
3 files changed, 99 insertions(+), 9 deletions(-)
hooks/post-receive
--
Osmocom code for Iuh interface