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, users/daniel/ow-nat-msc-conns has been updated
discards 41b83c03fe3f1320b6cafc97794c14daaee7fb47 (commit)
discards 9b43a3fd9dcd74262fa047230e8151f12db5c34d (commit)
via b2a010696e7f1b3db7c86aa644e592ac13a90a02 (commit)
via abb229a132adf952e38e166d870f255b402b724c (commit)
via 4eb5051128d113ef8708ad36b225e369eca61deb (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 (41b83c03fe3f1320b6cafc97794c14daaee7fb47)
\
N -- N -- N (b2a010696e7f1b3db7c86aa644e592ac13a90a02)
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=b2a010696e7f1b3db7c86aa644e592ac…
commit b2a010696e7f1b3db7c86aa644e592ac13a90a02
Author: Daniel Willmann <dwillmann(a)sysmocom.de>
Date: Tue Feb 28 18:27:05 2017 +0100
WIP
Change-Id: Id3a6ec9df262841548f0c1df9df6d649770e1b4f
http://cgit.osmocom.org/openbsc/commit/?id=abb229a132adf952e38e166d870f255b…
commit abb229a132adf952e38e166d870f255b402b724c
Author: Daniel Willmann <dwillmann(a)sysmocom.de>
Date: Wed Mar 1 18:56:38 2017 +0100
tests: Test IMSI routing with multiple MSCs
Change-Id: Iab46d45aa8ba708282debcd7b9d704fc40e6ff1f
Ticket: SYS#3208
Sponsored-by: On-Waves ehf.
http://cgit.osmocom.org/openbsc/commit/?id=4eb5051128d113ef8708ad36b225e369…
commit 4eb5051128d113ef8708ad36b225e369eca61deb
Author: Daniel Willmann <dwillmann(a)sysmocom.de>
Date: Tue Feb 28 19:09:25 2017 +0100
osmo-bsc_nat: Implement access lists for MSC conns
Change-Id: Iedcf492ff8bb86e7ac68d8909634525e7b0648ea
Ticket: SYS#3208
Sponsored-by: On-Waves ehf.
-----------------------------------------------------------------------
Summary of changes:
openbsc/src/osmo-bsc_nat/bsc_nat_utils.c | 2 +-
openbsc/tests/bsc-nat/bsc_nat_test.c | 49 ++++++++++++++++++++++++++++++++
openbsc/tests/bsc-nat/bsc_nat_test.ok | 1 +
3 files changed, 51 insertions(+), 1 deletion(-)
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 2ed3659cac62d240b9c7afc0f03ee08ee9ef8bed (commit)
via 70c7d4160dfb9b710e4bf93d3d6265dce8b0392f (commit)
via 9756c4691d576c5bfe175245a82d00b2d03ed70e (commit)
from a2c581123873b6ac16919aad531ab62467bd4f1c (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=2ed3659cac62d240b9c7afc0f03e…
commit 2ed3659cac62d240b9c7afc0f03ee08ee9ef8bed
Author: Max <msuraev(a)sysmocom.de>
Date: Fri Feb 24 14:48:45 2017 +0100
Handle replies in ctrl_cmd_handle()
Previously *_REPLY and ERROR messages were not explicitly handled which
would lead to sending error in response to them which in turn would
prompt other party to send error as well which would result in infinite
cycle.
Handle it explicitly by logging message id and other relevant data.
Change-Id: Id96f3a2fc81fa4549f49556d83f062c6b2f59e28
Related: OS#1615
http://cgit.osmocom.org/libosmocore/commit/?id=70c7d4160dfb9b710e4bf93d3d62…
commit 70c7d4160dfb9b710e4bf93d3d6265dce8b0392f
Author: Max <msuraev(a)sysmocom.de>
Date: Fri Feb 24 13:59:14 2017 +0100
Use value_string for ctrl_type
Use value_string for enum ctrl_type instead of custom code. Add
corresponding unit tests.
Related: OS#1615
Change-Id: Icd4e96dd9f00876cb70b43cfcf42ab4f10311b28
http://cgit.osmocom.org/libosmocore/commit/?id=9756c4691d576c5bfe175245a82d…
commit 9756c4691d576c5bfe175245a82d00b2d03ed70e
Author: Max <msuraev(a)sysmocom.de>
Date: Fri Feb 24 13:03:32 2017 +0100
Fix client-side ctrl interface helpers
* remove unused ctrl_interface_connect() which is not part of public API
* add default read callback to osmo_ctrl_conn_alloc()
Change-Id: Iaa209e34a849ce0dfe2e29b482c3208ade1a32a4
Related: OS#1615
-----------------------------------------------------------------------
Summary of changes:
.gitignore | 2 +-
include/osmocom/ctrl/control_cmd.h | 6 ++--
src/ctrl/control_cmd.c | 45 +++++++++--------------------
src/ctrl/control_if.c | 58 ++++++++++++--------------------------
tests/Makefile.am | 7 +++--
tests/ctrl/ctrl_test.c | 36 +++++++++++++++++++++++
tests/ctrl/ctrl_test.ok | 9 ++++++
tests/testsuite.at | 6 ++++
8 files changed, 92 insertions(+), 77 deletions(-)
create mode 100644 tests/ctrl/ctrl_test.c
create mode 100644 tests/ctrl/ctrl_test.ok
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 "UNNAMED PROJECT".
The branch, master has been updated
via 4436dececdd2180c7148be113f0841d0a4bcb5fb (commit)
via 21380ae55ec5b673847288fd54cc6dcf01350964 (commit)
via b5b11e31fbe23466129b39d37d47b91ae7c42366 (commit)
via 8d97d34f5872865af4364ad0af1cdd88dbd7bd82 (commit)
from 428c9478cd54371a7f8728ca159db57415a1517d (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-hlr/commit/?id=4436dececdd2180c7148be113f0841d…
commit 4436dececdd2180c7148be113f0841d0a4bcb5fb
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Wed Feb 22 01:49:36 2017 +0100
cosmetic: rename auc_3g_test.c to auc_test.c
The test includes 2G-only tests so the name is misleading. Splitting up makes
no sense.
Change-Id: I1a5a40413bf6636ead9370fb827aa0338c049e7f
http://cgit.osmocom.org/osmo-hlr/commit/?id=21380ae55ec5b673847288fd54cc6dc…
commit 21380ae55ec5b673847288fd54cc6dcf01350964
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Tue Feb 21 21:53:38 2017 +0100
cosmetic: auc_3g_test: improve test debugging tools
In the test failure mismatch printf, better indicate the place of first
mismatch. Helpful if some byte within a hexdump differs, the case when
debugging AUTS.
Copy some optarg code from openbsc's msc_vlr tests to provide verbose mode that
prints log statements' source file and line.
Change-Id: I1b23da055b5edacba09310411caf43c4cd1c29bc
http://cgit.osmocom.org/osmo-hlr/commit/?id=b5b11e31fbe23466129b39d37d47b91…
commit b5b11e31fbe23466129b39d37d47b91ae7c42366
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Wed Feb 22 01:42:43 2017 +0100
auc_compute_vectors(): fix AUTS resync for multiple vectors
Fix bug where AUTS was fed to each vector generation and thus each vector was
generated with the same SQN. In auc_3g_test, adjust the bug indicating test
expectations to now expect the proper results.
Depends: libosmocore change-id If943731a78089f0aac3d55245de80596d01314a4
Change-Id: I425a1d92c85896227341f565f5361c0d830ce866
http://cgit.osmocom.org/osmo-hlr/commit/?id=8d97d34f5872865af4364ad0af1cdd8…
commit 8d97d34f5872865af4364ad0af1cdd88dbd7bd82
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Tue Feb 21 22:46:35 2017 +0100
cosmetic: refactor auc_compute_vectors(), add debug log
Make the generation logic easier to understand (hopefully).
Massively extend debug logging, which serves to illustrate the current AUTS
failure shown by auc_3g_test.
Since DAUC now logs the vectors, there is no need to print the vectors in
VEC_IS() in auc_3g_test and auc_ts_55_205_test_sets anymore. Adjust testlog
expectations accordingly.
Change-Id: Ifb36d010a4ac64c765517e15b9074424ec19cc60
-----------------------------------------------------------------------
Summary of changes:
src/auc.c | 116 ++++--
tests/auc/Makefile.am | 12 +-
tests/auc/auc_3g_test.err | 353 -----------------
tests/auc/{auc_3g_test.c => auc_test.c} | 121 +++---
tests/auc/auc_test.err | 346 ++++++++++++++++
tests/auc/{auc_3g_test.ok => auc_test.ok} | 0
tests/auc/auc_ts_55_205_test_sets.err | 456 +++++++++++++---------
tests/auc/gen_ts_55_205_test_sets/main_template.c | 4 +-
tests/testsuite.at | 6 +-
9 files changed, 778 insertions(+), 636 deletions(-)
delete mode 100644 tests/auc/auc_3g_test.err
rename tests/auc/{auc_3g_test.c => auc_test.c} (90%)
create mode 100644 tests/auc/auc_test.err
rename tests/auc/{auc_3g_test.ok => auc_test.ok} (100%)
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 OpenBSC GSM Base Station Controller (+MSC/HLR/SGSN)".
The branch, master has been updated
via f01bd13ca1d137c4ec32ba301c47afb69a839378 (commit)
from f480b3589379be870453826ab7f1abaffb6f6315 (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=f01bd13ca1d137c4ec32ba301c47afb6…
commit f01bd13ca1d137c4ec32ba301c47afb69a839378
Author: Keith <keith(a)rhizomatica.org>
Date: Sat Feb 25 13:46:37 2017 +0100
meas_json: fix NEIGH: missing array braces
Make NEIGH an array of Javascript objects, otherwise the JSON is not parseable
when neighbours exist
Change-Id: I42029f40bf357adbb2f3c71cdcbafbc21090e348
-----------------------------------------------------------------------
Summary of changes:
openbsc/src/utils/meas_json.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
hooks/post-receive
--
The OpenBSC GSM Base Station Controller (+MSC/HLR/SGSN)