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 f9c2c56c7d05dfdb076840a6c091d6341db725d4 (commit)
via 45ebc523c6b4825ab780a528fc87ab5c70bf867f (commit)
from 61281f4c4780ede1545e9e8499278789433d3d30 (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=f9c2c56c7d05dfdb076840a6c091…
commit f9c2c56c7d05dfdb076840a6c091d6341db725d4
Author: Vadim Yanitskiy <axilirator(a)gmail.com>
Date: Tue Nov 1 22:19:28 2016 +0700
utils/conv_gen.py: explicitly import reduce()
This change finally makes the script able to be executed
in Python 3 environment. Due to new Python 3 restrictions,
the reduce() should be imported explicitly.
Change-Id: Icbc81c29f1a226aeed2c1245a5d60809fe124005
http://cgit.osmocom.org/libosmocore/commit/?id=45ebc523c6b4825ab780a528fc87…
commit 45ebc523c6b4825ab780a528fc87ab5c70bf867f
Author: Vadim Yanitskiy <axilirator(a)gmail.com>
Date: Thu Oct 27 02:19:37 2016 +0700
utils/conv_gen.py: don't mix print and write()
This is mostly a code style change, but it also
increases the compatibility with Python 3.
Change-Id: I5c8271d973f766aeb9cbcab30c4eddfdab54fcbb
-----------------------------------------------------------------------
Summary of changes:
utils/conv_gen.py | 67 +++++++++++++++++++++++++++++--------------------------
1 file changed, 35 insertions(+), 32 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, master has been updated
via 5e5d94cd1b81e3ac0cd9b4423567d56394f15fac (commit)
via d37981e8f7151c6a5733f52f3209372fe96d2e59 (commit)
via b4cb83809226218db18d650aa9c8700370501d37 (commit)
from 05adbdcb2eabaca8426356ade5ca24a1be6e96d2 (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=5e5d94cd1b81e3ac0cd9b4423567d563…
commit 5e5d94cd1b81e3ac0cd9b4423567d56394f15fac
Author: Philipp <pmaier(a)sysmocom.de>
Date: Fri Oct 14 18:08:00 2016 +0200
Cosmetic: Add missing switch to usage help
Adds the -p --pcap option to the help text.
Change-Id: I3e763c30ca13bc51c8b72af8a94558c92439f109
http://cgit.osmocom.org/openbsc/commit/?id=d37981e8f7151c6a5733f52f3209372f…
commit d37981e8f7151c6a5733f52f3209372fe96d2e59
Author: Philipp <pmaier(a)sysmocom.de>
Date: Mon Oct 10 15:11:41 2016 +0200
gsm0408: Adding log output for 3g specific RR messages
GSM 04.18, which is the successor of GSM 04.08, describes
additional RR 3g specific message types. This commit adds
log output for those messages. The behaviour is not changed
all affected message types are still forwared to the MSC
as they were before.
See also 3GPP TS 04.18, section 10.4, table 10.4.1
The change requires to update libosmocore as well, see
also commit f48fdb3a108da0dc23d7af4ac021e98e11f07152 in
libosmocore.git for details.
Change-Id: I41f2242fdf59c3eb4b3f8f7f003c17f7e0df01aa
http://cgit.osmocom.org/openbsc/commit/?id=b4cb83809226218db18d650aa9c87003…
commit b4cb83809226218db18d650aa9c8700370501d37
Author: Philipp <pmaier(a)sysmocom.de>
Date: Thu Sep 29 17:01:57 2016 +0200
OML: Improve OML attribute handling
the OML attribute tables are hardcoded. To set variable parameters,
the hardcoded data structure (tlv) is patched on byte level during
runtime. This patch replaces this mechanism.
- Replace hardcoded OML attribute tables with dynamically
generated TLV structures.
- Add unit tests to check if the OML attribute tables are
generated correctly
- Put OML attribute table generator code in a separate file:
bts_ipaccess_nanobts_omlattr.c
Change-Id: Ibeb34a84912d6cf695f553a34c69320fca7d08fa
-----------------------------------------------------------------------
Summary of changes:
openbsc/.gitignore | 1 +
openbsc/configure.ac | 1 +
openbsc/include/openbsc/Makefile.am | 1 +
.../{misdn.h => bts_ipaccess_nanobts_omlattr.h} | 23 +-
openbsc/src/libbsc/Makefile.am | 1 +
openbsc/src/libbsc/bsc_api.c | 14 +-
openbsc/src/libbsc/bts_ipaccess_nanobts.c | 240 ++---------------
openbsc/src/libbsc/bts_ipaccess_nanobts_omlattr.c | 232 +++++++++++++++++
openbsc/src/libmsc/gsm_04_08.c | 4 +-
openbsc/src/osmo-nitb/bsc_hack.c | 1 +
openbsc/tests/Makefile.am | 1 +
.../tests/{gsm0408 => nanobts_omlattr}/Makefile.am | 10 +-
.../tests/nanobts_omlattr/nanobts_omlattr_test.c | 284 +++++++++++++++++++++
.../tests/nanobts_omlattr/nanobts_omlattr_test.ok | 26 ++
openbsc/tests/testsuite.at | 6 +
15 files changed, 603 insertions(+), 242 deletions(-)
copy openbsc/include/openbsc/{misdn.h => bts_ipaccess_nanobts_omlattr.h} (57%)
create mode 100644 openbsc/src/libbsc/bts_ipaccess_nanobts_omlattr.c
copy openbsc/tests/{gsm0408 => nanobts_omlattr}/Makefile.am (77%)
create mode 100644 openbsc/tests/nanobts_omlattr/nanobts_omlattr_test.c
create mode 100644 openbsc/tests/nanobts_omlattr/nanobts_omlattr_test.ok
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 61281f4c4780ede1545e9e8499278789433d3d30 (commit)
from 72e43f02c3408ec85c259ee483ac75f01ecb6cad (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=61281f4c4780ede1545e9e849927…
commit 61281f4c4780ede1545e9e8499278789433d3d30
Author: Max <msuraev(a)sysmocom.de>
Date: Tue Nov 1 10:49:31 2016 +0100
Fix typo in osmo_fsm_log_addr()
Previously function parameter was ignored, fsm_log_addr was always set
to false.
Change-Id: I74f06eab2dfa81dbb95e01f0b4b26448fd1b98f8
-----------------------------------------------------------------------
Summary of changes:
src/fsm.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
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, master has been updated
via 05adbdcb2eabaca8426356ade5ca24a1be6e96d2 (commit)
from 87c00564805d9f55f168831cd52cf3f869d70637 (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=05adbdcb2eabaca8426356ade5ca24a1…
commit 05adbdcb2eabaca8426356ade5ca24a1be6e96d2
Author: Max <msuraev(a)sysmocom.de>
Date: Tue Nov 1 11:51:51 2016 +0100
Decrease count_codecs logging verbosity
Use channel type name instead of number and log it with DEBUG facility
otherwise it produces lots of irrelevant messages for SDCCH*
Change-Id: I11b04e0cb02bf6ed01f6076cb31a56d8921d735e
-----------------------------------------------------------------------
Summary of changes:
openbsc/src/libbsc/abis_rsl.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
hooks/post-receive
--
The OpenBSC GSM Base Station Controller (+MSC/HLR/SGSN)