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 "Legacy: The OpenBSC GSM Base Station Controller (+MSC/HLR/SGSN)".
The branch, master has been updated
via 968a6c2365c0f772fa65ebe66466715d6861e7fc (commit)
from e229071479282f854656799c19a07fbe79a20e57 (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=968a6c2365c0f772fa65ebe66466715d…
commit 968a6c2365c0f772fa65ebe66466715d6861e7fc
Author: Pablo Neira Ayuso <pablo(a)gnumonks.org>
Date: Sun Sep 10 20:38:06 2017 +0200
libmsc: sms_route_mt_sms() may return uninitialized return value
If smpp_first is set off and there is a local receiver for this sms,
then return 0. Without this patch, we return 'rc' which is uninitialized
in the scenario that I'm describing above.
Change-Id: I0c0bcd919cc3275d491995d17c6a32bb61c6afe1
-----------------------------------------------------------------------
Summary of changes:
openbsc/src/libmsc/gsm_04_11.c | 41 +++++++++++++++++++++--------------------
1 file changed, 21 insertions(+), 20 deletions(-)
hooks/post-receive
--
Legacy: 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 "Legacy: The OpenBSC GSM Base Station Controller (+MSC/HLR/SGSN)".
The branch, master has been updated
via e229071479282f854656799c19a07fbe79a20e57 (commit)
from 9051421d75eed22c02f01b373cfab58dbadcd4b5 (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=e229071479282f854656799c19a07fbe…
commit e229071479282f854656799c19a07fbe79a20e57
Author: Neels Hofmeyr <neels(a)hofmeyr.de>
Date: Wed Sep 13 01:29:32 2017 +0200
fix vty tests: vty no longer goes to parent node implicitly
Fix four instances of VTY tests working because it used to include implicit
'exit' commands to the parent node.
Since libosmocore change-id Id73cba2dd34676bad8a130e9c45e67a272f19588 = commit
d64b6aed235f6e4d84a2cb8e84b32c3179260254, we no longer do this implicit-exit in
interactive VTY shells.
*) the nitb node lacked the default command set (including 'end' and 'exit'),
so it was impossible to leave the nitb node. This hit in
testSubscriberCreateDelete. Add vty_install_default(NITB_NODE).
*) in testPingPongConfiguration, the intention is to enter the /msc 0 node.
Drop prior entry of the 'network' node, which looks like an oversight. So
far the 'msc 0' caused an implicit 'exit' and thus worked, now fails.
*) Two instances following comments "# Check searching for outer node's
commands", which look like they are intended to check for this implicit-exit
behavior. This is obsolete, drop those parts of the tests.
Change-Id: I77931d6a09c42c443c6936000592f22a7fd06cab
-----------------------------------------------------------------------
Summary of changes:
openbsc/src/libmsc/vty_interface_layer3.c | 1 +
openbsc/tests/vty_test_runner.py | 22 ----------------------
2 files changed, 1 insertion(+), 22 deletions(-)
hooks/post-receive
--
Legacy: 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 "UNNAMED PROJECT".
The branch, master has been updated
via 5b0df1f1c52803ae01c406081efacfdd19a24d4c (commit)
from 5759a19020cb35b7b8091b387aec448eb1f67a32 (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=5b0df1f1c52803ae01c406081efacfd…
commit 5b0df1f1c52803ae01c406081efacfdd19a24d4c
Author: Max <msuraev(a)sysmocom.de>
Date: Mon Sep 11 10:38:59 2017 +0200
TS alloc: properly count UL slots
Add cycle to mark multiple allocated UL slots similar to the way we
count DL slots in AllocTest. Until multislot UL allocation is
implemented it does not affect test output.
Change-Id: I2705405119421da3066c6c6bdd5830df4c133a36
Related: OS#2282
-----------------------------------------------------------------------
Summary of changes:
tests/alloc/AllocTest.cpp | 4 ++++
1 file changed, 4 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 "Legacy: The OpenBSC GSM Base Station Controller (+MSC/HLR/SGSN)".
The branch, master has been updated
via 9051421d75eed22c02f01b373cfab58dbadcd4b5 (commit)
from f52cf145acea5db288543de0f2e886988d5676cf (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=9051421d75eed22c02f01b373cfab58d…
commit 9051421d75eed22c02f01b373cfab58dbadcd4b5
Author: Pablo Neira Ayuso <pablo(a)gnumonks.org>
Date: Sun Sep 10 21:29:12 2017 +0200
libmsc: annotate esme route in the sms object from deliver_to_esme()
Annotate this esme route, so we can use it to return -EINPROGRESS to
skip sending premature RP-ACK to the mobile station, in case we're
handling sms routes through SMPP.
Now that we have this information in place, we use it wherever possible
to avoid kludgy checks on sms->receiver.
sms_free() already releases references to this object, so we should be
fine with this.
Fixes: 4e5b90a594f9 ("libmsc: remove 'deferred' parameter in sms_route_mt_sms()")
Change-Id: Ib8a8fd9bbb0d3b6aff7931e4bacbea99d000e484
-----------------------------------------------------------------------
Summary of changes:
openbsc/src/libmsc/gsm_04_11.c | 11 ++++++++---
openbsc/src/libmsc/smpp_openbsc.c | 4 ++++
2 files changed, 12 insertions(+), 3 deletions(-)
hooks/post-receive
--
Legacy: 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 "A/B/C Netz".
The branch, master has been updated
via 5b1956fe49f958a4674f4e470fc8a63bc5576016 (commit)
via b6326aa473ce9327ba3eb7ba2cb66eecb2572258 (commit)
via 7017fd7b3c88a0704992ac51ab97c91d56a9407b (commit)
from c6875ea41233090cd244d32e12855db7f58a6689 (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/osmocom-analog/commit/?id=5b1956fe49f958a4674f4e470…
commit 5b1956fe49f958a4674f4e470fc8a63bc5576016
Author: Andreas Eversberg <jolly(a)eversberg.eu>
Date: Mon Sep 11 20:37:03 2017 +0200
Move sms and dms code (NMT) to separate lib.a
http://cgit.osmocom.org/osmocom-analog/commit/?id=b6326aa473ce9327ba3eb7ba2…
commit b6326aa473ce9327ba3eb7ba2cb66eecb2572258
Author: Andreas Eversberg <jolly(a)eversberg.eu>
Date: Mon Sep 11 20:35:18 2017 +0200
Move commonly used German tones (A/B/C-Netz) to separate lib.a
http://cgit.osmocom.org/osmocom-analog/commit/?id=7017fd7b3c88a0704992ac51a…
commit 7017fd7b3c88a0704992ac51ab97c91d56a9407b
Author: Andreas Eversberg <jolly(a)eversberg.eu>
Date: Mon Sep 11 20:31:29 2017 +0200
Give hint to alter PKG_CONFIG_PATH, if SoapySDR or UHD was not found
-----------------------------------------------------------------------
Summary of changes:
configure.ac | 4 ++--
src/anetz/Makefile.am | 3 +--
src/anetz/main.c | 4 ++--
src/bnetz/Makefile.am | 4 +---
src/bnetz/main.c | 4 ++--
src/cnetz/Makefile.am | 4 +---
src/cnetz/main.c | 4 ++--
src/common/Makefile.am | 6 +++++-
src/{anetz => common}/besetztton.c | 0
src/{anetz => common}/besetztton.h | 0
src/{anetz => common}/freiton.c | 0
src/{anetz => common}/freiton.h | 0
src/nmt/Makefile.am | 9 +++++++--
src/r2000/Makefile.am | 1 -
src/test/Makefile.am | 29 +++++++++++++----------------
15 files changed, 36 insertions(+), 36 deletions(-)
rename src/{anetz => common}/besetztton.c (100%)
rename src/{anetz => common}/besetztton.h (100%)
rename src/{anetz => common}/freiton.c (100%)
rename src/{anetz => common}/freiton.h (100%)
hooks/post-receive
--
A/B/C Netz
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, master has been updated
via 14af167a5553519d8164f4a21556888535eeefeb (commit)
from 9c5f01e7b2cb1455314443ceaeb035326354d280 (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-netif/commit/?id=14af167a5553519d8164f4a215…
commit 14af167a5553519d8164f4a21556888535eeefeb
Author: Pablo Neira Ayuso <pablo(a)gnumonks.org>
Date: Mon Sep 4 20:35:36 2017 +0200
osmux: fix buffer management mess in snprintf() calls
SNPRINTF_BUFFER_SIZE() looks too complex, previous version maintains two
different variables to account for the remaining space in the buffer,
one of them is always decremented based on what snprintf() returns,
which may result in underflow. These variables are swapped - not used
consistently - all over this code.
Replace this macro by a simplified version, with one single parameter to
account for remaining space. This macro also deals with two corner
cases:
1) snprintf() fails, actually never happens in practise, but
documentation indicates it may return -1, so let's catch this case
from here to stick to specs.
2) There is not enough space in the buffer, in that case, keep
increasing offset, so we know how much would have been printed, just
like snprintf() does.
Thanks to Pau Espin for reporting, and Holger for clues on this.
I have run osmux_test and, at quick glance, it looks good.
Change-Id: I5b5d6ec57a02f57c23b1ae86dbd894bad28ea797
-----------------------------------------------------------------------
Summary of changes:
src/osmux.c | 52 +++++++++++++++++++++++-------------------------
src/rtp.c | 27 +++++++++++++------------
tests/osmux/osmux_test.c | 8 ++++----
3 files changed, 43 insertions(+), 44 deletions(-)
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, master has been updated
via 3488cf5b8570cc7a2e6894870705645cfc9baa88 (commit)
from 769e9354abcbccc530b6b93421ee974071f540f4 (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=3488cf5b8570cc7a2e689487070…
commit 3488cf5b8570cc7a2e6894870705645cfc9baa88
Author: Neels Hofmeyr <neels(a)hofmeyr.de>
Date: Tue Sep 5 12:48:01 2017 +0200
vty: add 'asp' / 'local-ip' command
We can set the ASP's remote IP (i.e. where to reach osmo-stp), but so far the
only way to specify the local IP address to bind to can only be set from C code
(e.g. the simple client). Allow setting the local address via VTY.
For example, this is desired for the osmo-gsm-tester, to not use arbitrary IP
addresses.
Change-Id: I3f71897dfacafcf3126e51894d6ca756b02dcd7d
-----------------------------------------------------------------------
Summary of changes:
src/osmo_ss7_vty.c | 13 +++++++++++++
1 file changed, 13 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 "MNCC <-> SIP bridge".
The branch, master has been updated
via b6032727870ab2b98372b697d91f7256da4f32b3 (commit)
from 148df95d42adbabd6ddd87e28c5970b615b9b3cd (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-sip-connector/commit/?id=b6032727870ab2b98372b…
commit b6032727870ab2b98372b697d91f7256da4f32b3
Author: Keith <keith(a)rhizomatica.org>
Date: Tue Aug 29 16:56:11 2017 +0200
sdp.c Send octet-align in fmtp
rfc4867 8.2:
octet-align: Permissible values are 0 and 1. If 1, octet-aligned
operation SHALL be used. If 0 or if not present,
bandwidth-efficient operation is employed.
We don't have any support for AMR BE mode, but if we don't
send this the other end expects BE mode and can't decode the stream
Change-Id: I938758ac4ec55db9223e3da6c3c277e8fa670055
-----------------------------------------------------------------------
Summary of changes:
src/sdp.c | 11 ++++++++++-
1 file changed, 10 insertions(+), 1 deletion(-)
hooks/post-receive
--
MNCC <-> SIP bridge
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 ae134f896a77eb5b79c81601cabd821d5b993358 (commit)
from cb9f608094ea31b851b376504c585432340af888 (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=ae134f896a77eb5b79c81601cabd821…
commit ae134f896a77eb5b79c81601cabd821d5b993358
Author: Max <msuraev(a)sysmocom.de>
Date: Tue Sep 5 13:22:18 2017 +0200
OML: print actual type of report sent to BSC
We re-use the same facility to send different data so it's better to
print actual cause value to avoid confusion.
Change-Id: I9413ecf57eaa6fc661f1a57ccdaa2f04c50ea43b
-----------------------------------------------------------------------
Summary of changes:
src/common/oml.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
hooks/post-receive
--
Osmocom BTS-side code (Abis, scheduling, ...)
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 Open Source GSM Base Band stack".
The branch, master has been updated
via ae31c37d2b4033fb2335060e4f7942ad5ad9549a (commit)
from 903e2515f5d92b152804ae4afbe67499d0a90d61 (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/osmocom-bb/commit/?id=ae31c37d2b4033fb2335060e4f794…
commit ae31c37d2b4033fb2335060e4f7942ad5ad9549a
Author: Vadim Yanitskiy <axilirator(a)gmail.com>
Date: Sat Sep 9 00:24:04 2017 +0300
mobile/main.c: clean up config file selection logic
The 903e2515 introduced the following problems:
- The home variable is allocated dynamically by talloc,
but not being freed. There is no need for dynamical
memory allocation, as the getenv() returns a pointer
to a value in the environment or NULL.
- In case of custom configuration file, a pointer to
a part of stack (not heap) is passed to talloc_free().
This may cause unexpected behaviour of segfault.
Let's fix both of them.
Change-Id: I79cc3b954c3018b7e780f6351c3030c3062470b5
-----------------------------------------------------------------------
Summary of changes:
src/host/layer23/src/mobile/main.c | 24 +++++++++++++++---------
1 file changed, 15 insertions(+), 9 deletions(-)
hooks/post-receive
--
The Open Source GSM Base Band stack