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 a52d839343aea9b81c2463f52c3c3358778698f3 (commit)
from 98f6482ec7eb603b17e5a99fb92d28c17fcf61e9 (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=a52d839343aea9b81c2463f52c3c…
commit a52d839343aea9b81c2463f52c3c3358778698f3
Author: Max <msuraev(a)sysmocom.de>
Date: Tue Sep 12 15:34:35 2017 +0200
Expand bit pretty-printer
Add OSMO_BIT_PRINT_EX() which is like OSMO_BIT_PRINT() but allows to
specify character to be printed for set bits. It's useful to print bytes
used as mask where set bit has particular semantics - for example TS
mask in OsmoPCU.
Change-Id: I72528bc1e376134c5a7b6e7a50c48e38c3f48b0a
Related: OS#2282
-----------------------------------------------------------------------
Summary of changes:
include/osmocom/core/bits.h | 20 +++++++++++---------
1 file changed, 11 insertions(+), 9 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 "Osmocom fork of the Open SMPP 3.4 library".
The branch, master has been updated
via c63971fab0d67bc52d7fd455529b844009aa8565 (commit)
via cbdde82aca1103db1ed69f29a666f29fdc6b79ba (commit)
via 43dc9992bcc5335a5aea99ffde5bd634e96714bb (commit)
via cad0cc552f9956af3fa90d12de443dabe5c7c320 (commit)
via fe9f88add068fa08831abe535ee013cbd63adb3a (commit)
via a11a464552736f813656ca17c30c355543cfa573 (commit)
from 823e711018f053b3878071fe84e929b0623ca08b (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/libsmpp34/commit/?id=c63971fab0d67bc52d7fd455529b84…
commit c63971fab0d67bc52d7fd455529b844009aa8565
Author: Pau Espin Pedrol <pespin(a)sysmocom.de>
Date: Fri Sep 15 20:09:19 2017 +0200
Fix Out of bounds compilation warning in OCTET8
The code in OCTET8 implementation assumes the len is placed inside the
byte preceding the memory buffer, which is true for the defined cases.
However, it creates a compilation warning. Better pass the value
directly from the struct field rather than playing addr games. this way
we also assert we require to explicitly pass the len.
Fixes lots of warning like the one below:
/home/pespin/dev/sysmocom/bin/../git/libsmpp34/src/smpp34_unpack.c: In function ‘smpp34_u
npack’:
/home/pespin/dev/sysmocom/bin/../git/libsmpp34/src/smpp34_unpack.c:147:14: warning: array
subscript is above array bounds [-Warray-bounds]
lenval = *((inst par) - 1);\
^~~~~~~~~~~~~~~~~
/home/pespin/dev/sysmocom/bin/../git/libsmpp34/def_frame/submit_sm.frame:18:2: note: in e
xpansion of macro ‘OCTET8’
OCTET8( instancia, short_message, 254 );
^~~~~~
Change-Id: Id110f4e977c3becdb44cf5492c372e530ea51551
http://cgit.osmocom.org/libsmpp34/commit/?id=cbdde82aca1103db1ed69f29a666f2…
commit cbdde82aca1103db1ed69f29a666f29fdc6b79ba
Author: Pau Espin Pedrol <pespin(a)sysmocom.de>
Date: Fri Sep 15 19:25:52 2017 +0200
bind_receiver_resp_test.c: Fix compilation warning
/home/pespin/dev/sysmocom/bin/../git/libsmpp34/test_pdu/bind_receiver_resp_test.c: In function ‘main’:
/home/pespin/dev/sysmocom/bin/../git/libsmpp34/test_pdu/bind_receiver_resp_test.c:55:58: warning: ‘snprintf’ output
truncated before the last format character [-Wformat-truncation=]
snprintf((char*)b.system_id, sizeof(b.system_id), "%s", "1234567890123456");
^
/home/pespin/dev/sysmocom/bin/../git/libsmpp34/test_pdu/bind_receiver_resp_test.c:55:5: note: ‘snprintf’ output 17
bytes into a destination of size 16
snprintf((char*)b.system_id, sizeof(b.system_id), "%s", "1234567890123456");
Change-Id: I4ec682a5e2ee4d02008a9c86a0a5507792667d0e
http://cgit.osmocom.org/libsmpp34/commit/?id=43dc9992bcc5335a5aea99ffde5bd6…
commit 43dc9992bcc5335a5aea99ffde5bd634e96714bb
Author: Pau Espin Pedrol <pespin(a)sysmocom.de>
Date: Fri Sep 15 19:17:10 2017 +0200
smpp34_unpack.c: remove unused variable
Fixes compilation warning below:
/home/pespin/dev/sysmocom/bin/../git/libsmpp34/src/smpp34_unpack.c: In function ‘smpp34_unpack’:
/home/pespin/dev/sysmocom/bin/../git/libsmpp34/src/smpp34_unpack.c:232:18: warning: variable ‘l’ set but not used [
-Wunused-but-set-variable]
uint32_t l;
Change-Id: I75baa65b575deec1cc040490f2e76ebb54e46ca7
http://cgit.osmocom.org/libsmpp34/commit/?id=cad0cc552f9956af3fa90d12de443d…
commit cad0cc552f9956af3fa90d12de443dabe5c7c320
Author: Pau Espin Pedrol <pespin(a)sysmocom.de>
Date: Fri Sep 15 19:15:05 2017 +0200
smpp34_structs.h: Fix truncated output in str_tlv_id
Fixes compilation warning below:
%s’ directive output may be truncated writing between 8 and 33 bytes into a regio
n of size 30 [-Wformat-truncation=]
snprintf(buff, SMALL_BUFF, "%s",
^~
/home/pespin/dev/sysmocom/bin/../git/libsmpp34/src/smpp34_params.c:136:5: note: ‘
snprintf’ output between 9 and 34 bytes into a destination of size 30
snprintf(buff, SMALL_BUFF, "%s",
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#define OPERACION( p_tlv_id ) (tlv_id == p_tlv_id)?#p_tlv_id:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#include "def_list/tlv_id.list"
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
"Reserved"
~~~~~~~~~~
#undef OPERACION
~~~~~~~~~~~~~~~~
);
Change-Id: Ie2ba6182eb0cdd98cadb8317aef49141244aa92d
http://cgit.osmocom.org/libsmpp34/commit/?id=fe9f88add068fa08831abe535ee013…
commit fe9f88add068fa08831abe535ee013cbd63adb3a
Author: Pau Espin Pedrol <pespin(a)sysmocom.de>
Date: Fri Sep 15 19:14:19 2017 +0200
smpp34_structs.h: Fix trailing whitespace
Change-Id: I5838e216fe16b4789bb1a0ce40ce496f46a3c328
http://cgit.osmocom.org/libsmpp34/commit/?id=a11a464552736f813656ca17c30c35…
commit a11a464552736f813656ca17c30c355543cfa573
Author: Pau Espin Pedrol <pespin(a)sysmocom.de>
Date: Fri Sep 15 18:58:47 2017 +0200
smpp34_dumpBuf.c: remove unused variable
Fixes compilation warning below:
smpp34_dumpBuf.c:52:9: warning: variable ‘lefterror’ set but not used [-Wunused-but-set-variable]
int lefterror = 0;
Change-Id: Iea8ff80d3e4d16aaca6e37d64593b50fa27c8cfb
-----------------------------------------------------------------------
Summary of changes:
def_frame/deliver_sm.frame | 2 +-
def_frame/replace_sm.frame | 2 +-
def_frame/submit_multi.frame | 2 +-
def_frame/submit_sm.frame | 2 +-
src/smpp34_dumpBuf.c | 2 -
src/smpp34_dumpPdu.c | 3 +-
src/smpp34_pack.c | 3 +-
src/smpp34_structs.h | 82 +++++++++++++++++++-------------------
src/smpp34_unpack.c | 5 +--
test_pdu/bind_receiver_resp_test.c | 2 +-
10 files changed, 49 insertions(+), 56 deletions(-)
hooks/post-receive
--
Osmocom fork of the Open SMPP 3.4 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 "GSM Audio Pocket Knife".
The branch, fixeria/lib has been updated
via 3cf11d824385e06a96b318766d7e6708e49b3215 (commit)
via f7d53964d372a64ccbad419cedf33c360442a28f (commit)
via c24199263f070fe68b778cab82bb93327b0f07c1 (commit)
via 8e3d622262859145d6e8bc8ab4083ef97728a8f2 (commit)
via 2f5c8ae7ec445a5c327a584bffc4b17b53d7f7c0 (commit)
via 0f08d56e36bbd998a5bd10ec17f2001f03fb584c (commit)
via e8b882412b035637bec7edbd8b885c026e4f7040 (commit)
via b755032efda89dc2d16356dbaec3f9cdfded4354 (commit)
from 46df43543a9ea12acd0d0bf88a6e50aad7f14201 (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/gapk/commit/?id=3cf11d824385e06a96b318766d7e6708e49…
commit 3cf11d824385e06a96b318766d7e6708e49b3215
Author: Vadim Yanitskiy <axilirator(a)gmail.com>
Date: Fri Sep 15 19:34:44 2017 +0430
tests: add format / codec transcoding tests
This test group is intended to check the format / codec transcoding
capabilities of the library. The reference files are used to ensure
that encoding or decoding was successful.
The following formats are currently being tested:
- amr_efr
- gsm
- racal_hr
- racal_fr
- racal_efr
- ti_hr
- ti_fr
- ti_efr
- rtp_efr
- rtp_hr_etsi
- rtp_hr_ietf
http://cgit.osmocom.org/gapk/commit/?id=f7d53964d372a64ccbad419cedf33c36044…
commit f7d53964d372a64ccbad419cedf33c360442a28f
Author: Vadim Yanitskiy <axilirator(a)gmail.com>
Date: Fri Sep 15 19:17:21 2017 +0430
osmo-gapk: fix I/O count check condition
The stdin / stdout operation was broken by a new check condition,
introduced by the 15fa605576a81803c57a144231e9e9720aa133a1.
http://cgit.osmocom.org/gapk/commit/?id=c24199263f070fe68b778cab82bb93327b0…
commit c24199263f070fe68b778cab82bb93327b0f07c1
Author: Vadim Yanitskiy <axilirator(a)gmail.com>
Date: Thu Sep 14 15:20:50 2017 +0430
tests: add pq_rtp test
This test is intended to check the RTP source / sink operability.
To do this, two processing queues are being allocated:
"generator": source/random -> sink/rtp
"checker": source/rtp -> sink/checker
The first one generates some amount of random bytes (payload),
and stores them inside a buffer that is shared between both
queues.
After generation, a payload is being sent from the first
queue via an RTP sink, and then being received by the second
via an RTP source.
As both queues do use a shared buffer, the last item of the
second queue (named 'sink/checker') is able to compare a
received payload with expected.
http://cgit.osmocom.org/gapk/commit/?id=8e3d622262859145d6e8bc8ab4083ef9772…
commit 8e3d622262859145d6e8bc8ab4083ef97728a8f2
Author: Vadim Yanitskiy <axilirator(a)gmail.com>
Date: Tue Sep 12 19:07:52 2017 +0300
tests: add pq_file test
This test is intended to check the file source / sink
operability. To do that, the following processing chain
is being composed:
source/file -> proc/dummy -> sink/file (stdout)
The source item opens the sample file named 'io_sample.txt'
for reading. The next processing item simply converts all
uppercase latters to the lowercase. The last one writes
the result to stdout.
This processing cycle is being repeated several times
with different block length values.
http://cgit.osmocom.org/gapk/commit/?id=2f5c8ae7ec445a5c327a584bffc4b17b53d…
commit 2f5c8ae7ec445a5c327a584bffc4b17b53d7f7c0
Author: Vadim Yanitskiy <axilirator(a)gmail.com>
Date: Tue Sep 12 15:32:52 2017 +0300
tests: add procqueue test
This test is intended to validate the processing queue
management API. Moreover, the talloc debugging API is
used to ensure that there are no memory leaks.
First, four processing queues are being allocated. One
of them is empty, while others have different count of
items. Then the human-readable description is being
generated for all of them. And finally, the processing
and exit cllback are being tested.
During the test execution, the talloc NULL-context
tracking feature is enabled, allowing to observe every
memory allocation within the libosmogapk, and to detect
memory leaks.
http://cgit.osmocom.org/gapk/commit/?id=0f08d56e36bbd998a5bd10ec17f2001f03f…
commit 0f08d56e36bbd998a5bd10ec17f2001f03fb584c
Author: Vadim Yanitskiy <axilirator(a)gmail.com>
Date: Tue Sep 12 15:26:31 2017 +0300
Init automake test environment
http://cgit.osmocom.org/gapk/commit/?id=e8b882412b035637bec7edbd8b885c026e4…
commit e8b882412b035637bec7edbd8b885c026e4f7040
Author: Vadim Yanitskiy <axilirator(a)gmail.com>
Date: Tue Sep 12 01:30:48 2017 +0300
procqueue: allocate an output buffer as named chunk
The talloc_size() call sets the current file name and the current
line number as name for chunk being allocated. This combination
is not so informative during debugging, so let's use the static
'.buffer' string as context name for item's output buffer.
http://cgit.osmocom.org/gapk/commit/?id=b755032efda89dc2d16356dbaec3f9cdfde…
commit b755032efda89dc2d16356dbaec3f9cdfded4354
Author: Vadim Yanitskiy <axilirator(a)gmail.com>
Date: Tue Sep 12 01:17:26 2017 +0300
procqueue: set talloc name and context for queue description
Previously a queue description string was allocated without
setting proper parental talloc context and proper name.
-----------------------------------------------------------------------
Summary of changes:
.gitignore | 9 +
Makefile.am | 2 +-
configure.ac | 2 +
src/app_osmo_gapk.c | 2 +-
src/procqueue.c | 12 +-
tests/Makefile.am | 93 ++++++
{test => tests}/common.sh | 0
tests/io/io_sample.txt | 1 +
tests/io/pq_file_test.c | 149 +++++++++
tests/io/pq_file_test.ok | 12 +
tests/io/pq_rtp_test.c | 349 +++++++++++++++++++
tests/io/pq_rtp_test.ok | 10 +
{test => tests}/play_all_formats.sh | 0
tests/procqueue/pq_test.c | 371 +++++++++++++++++++++
tests/procqueue/pq_test.ok | 60 ++++
{test => tests}/ref-files/hhgttg_part1_5.s16 | Bin
.../ref-files/hhgttg_part1_5.s16.amr-efr | Bin
.../ref-files/hhgttg_part1_5.s16.amr-efr.s16 | Bin
{test => tests}/ref-files/hhgttg_part1_5.s16.gsm | Bin
.../ref-files/hhgttg_part1_5.s16.gsm.s16 | Bin
.../ref-files/hhgttg_part1_5.s16.racal-efr | Bin
.../ref-files/hhgttg_part1_5.s16.racal-efr.s16 | Bin
.../ref-files/hhgttg_part1_5.s16.racal-fr | Bin
.../ref-files/hhgttg_part1_5.s16.racal-fr.s16 | Bin
.../ref-files/hhgttg_part1_5.s16.racal-hr | Bin
.../ref-files/hhgttg_part1_5.s16.racal-hr.s16 | Bin
.../ref-files/hhgttg_part1_5.s16.rtp-efr | Bin
.../ref-files/hhgttg_part1_5.s16.rtp-efr.s16 | Bin
.../ref-files/hhgttg_part1_5.s16.rtp-hr-etsi | Bin
.../ref-files/hhgttg_part1_5.s16.rtp-hr-etsi.s16 | Bin
.../ref-files/hhgttg_part1_5.s16.rtp-hr-ietf | Bin
.../ref-files/hhgttg_part1_5.s16.rtp-hr-ietf.s16 | Bin
.../ref-files/hhgttg_part1_5.s16.ti-efr | Bin
.../ref-files/hhgttg_part1_5.s16.ti-efr.s16 | Bin
{test => tests}/ref-files/hhgttg_part1_5.s16.ti-fr | Bin
.../ref-files/hhgttg_part1_5.s16.ti-fr.s16 | Bin
{test => tests}/ref-files/hhgttg_part1_5.s16.ti-hr | Bin
.../ref-files/hhgttg_part1_5.s16.ti-hr.s16 | Bin
{test => tests}/test_all_formats.sh | 0
tests/testsuite.at | 244 ++++++++++++++
{test => tests}/update_ref_files.sh | 0
41 files changed, 1313 insertions(+), 3 deletions(-)
create mode 100644 tests/Makefile.am
rename {test => tests}/common.sh (100%)
create mode 100644 tests/io/io_sample.txt
create mode 100644 tests/io/pq_file_test.c
create mode 100644 tests/io/pq_file_test.ok
create mode 100644 tests/io/pq_rtp_test.c
create mode 100644 tests/io/pq_rtp_test.ok
rename {test => tests}/play_all_formats.sh (100%)
create mode 100644 tests/procqueue/pq_test.c
create mode 100644 tests/procqueue/pq_test.ok
rename {test => tests}/ref-files/hhgttg_part1_5.s16 (100%)
rename {test => tests}/ref-files/hhgttg_part1_5.s16.amr-efr (100%)
rename {test => tests}/ref-files/hhgttg_part1_5.s16.amr-efr.s16 (100%)
rename {test => tests}/ref-files/hhgttg_part1_5.s16.gsm (100%)
rename {test => tests}/ref-files/hhgttg_part1_5.s16.gsm.s16 (100%)
rename {test => tests}/ref-files/hhgttg_part1_5.s16.racal-efr (100%)
rename {test => tests}/ref-files/hhgttg_part1_5.s16.racal-efr.s16 (100%)
rename {test => tests}/ref-files/hhgttg_part1_5.s16.racal-fr (100%)
rename {test => tests}/ref-files/hhgttg_part1_5.s16.racal-fr.s16 (100%)
rename {test => tests}/ref-files/hhgttg_part1_5.s16.racal-hr (100%)
rename {test => tests}/ref-files/hhgttg_part1_5.s16.racal-hr.s16 (100%)
rename {test => tests}/ref-files/hhgttg_part1_5.s16.rtp-efr (100%)
rename {test => tests}/ref-files/hhgttg_part1_5.s16.rtp-efr.s16 (100%)
rename {test => tests}/ref-files/hhgttg_part1_5.s16.rtp-hr-etsi (100%)
rename {test => tests}/ref-files/hhgttg_part1_5.s16.rtp-hr-etsi.s16 (100%)
rename {test => tests}/ref-files/hhgttg_part1_5.s16.rtp-hr-ietf (100%)
rename {test => tests}/ref-files/hhgttg_part1_5.s16.rtp-hr-ietf.s16 (100%)
rename {test => tests}/ref-files/hhgttg_part1_5.s16.ti-efr (100%)
rename {test => tests}/ref-files/hhgttg_part1_5.s16.ti-efr.s16 (100%)
rename {test => tests}/ref-files/hhgttg_part1_5.s16.ti-fr (100%)
rename {test => tests}/ref-files/hhgttg_part1_5.s16.ti-fr.s16 (100%)
rename {test => tests}/ref-files/hhgttg_part1_5.s16.ti-hr (100%)
rename {test => tests}/ref-files/hhgttg_part1_5.s16.ti-hr.s16 (100%)
rename {test => tests}/test_all_formats.sh (100%)
create mode 100644 tests/testsuite.at
rename {test => tests}/update_ref_files.sh (100%)
hooks/post-receive
--
GSM Audio Pocket Knife
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 98f6482ec7eb603b17e5a99fb92d28c17fcf61e9 (commit)
from b2e41cc174e3423282a30fa7c40133350973e300 (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=98f6482ec7eb603b17e5a99fb92d…
commit 98f6482ec7eb603b17e5a99fb92d28c17fcf61e9
Author: Max <msuraev(a)sysmocom.de>
Date: Mon Sep 4 17:15:13 2017 +0200
Make release helper more robust
* check for bumpversion and error out if missing
* drop bumpversion dependency from .deb
Change-Id: Ide04d4c1ba20426bdf9531e25b462eda9418858a
Related: OS#1861
-----------------------------------------------------------------------
Summary of changes:
debian/control | 1 -
osmo-release.mk | 5 +++++
2 files changed, 5 insertions(+), 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 OpenGGSN project".
The branch, master has been updated
via ea70f3619acbba7dba0e859f7eb52bdd53d4c17c (commit)
from 98146776dddb986fda78b5f028e79f041460ee4c (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=ea70f3619acbba7dba0e859f7eb52b…
commit ea70f3619acbba7dba0e859f7eb52bdd53d4c17c
Author: Max <msuraev(a)sysmocom.de>
Date: Fri Sep 15 12:16:53 2017 +0200
Fix leftovers after rename
* Use proper name in jenkins test
* Fix naming in systemd service
* Fix git-review config
Change-Id: I934f897002215d7d4e610cbd312383181bbe97c9
-----------------------------------------------------------------------
Summary of changes:
.gitreview | 2 +-
contrib/jenkins.sh | 2 +-
contrib/{openggsn.service => osmo-ggsn.service} | 4 ++--
3 files changed, 4 insertions(+), 4 deletions(-)
rename contrib/{openggsn.service => osmo-ggsn.service} (63%)
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 "Legacy: The OpenBSC GSM Base Station Controller (+MSC/HLR/SGSN)".
The branch, users/daniel/ow-nat-msc-conns has been updated
via 11c316f5dd081d3a695812da2ab1e553ebb3be1b (commit)
via db3f545da1f48e3cf37de4309cc290e4790c8884 (commit)
from 606d70cd2630f2045a754a42b98416d84b60d793 (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=11c316f5dd081d3a695812da2ab1e553…
commit 11c316f5dd081d3a695812da2ab1e553ebb3be1b
Author: Daniel Willmann <dwillmann(a)sysmocom.de>
Date: Fri Sep 15 13:52:04 2017 +0200
libmgcp: Pass the pointer to the mgcp list on init, don't copy it
Change-Id: I2d51589670bb602422ec98521eec620948752e36
http://cgit.osmocom.org/openbsc/commit/?id=db3f545da1f48e3cf37de4309cc290e4…
commit db3f545da1f48e3cf37de4309cc290e4790c8884
Author: Daniel Willmann <dwillmann(a)sysmocom.de>
Date: Fri Sep 15 13:51:28 2017 +0200
libmgcp: Fix mgcp instance argument
Change-Id: I47e5b6fbcf0981699b330030de92f209fc4bb25a
-----------------------------------------------------------------------
Summary of changes:
openbsc/include/openbsc/bsc_nat.h | 2 +-
openbsc/include/openbsc/mgcp.h | 2 +-
openbsc/src/libmgcp/mgcp_vty.c | 9 +++++----
openbsc/src/osmo-bsc_mgcp/mgcp_main.c | 6 +++---
openbsc/src/osmo-bsc_nat/bsc_mgcp_utils.c | 6 +++---
openbsc/src/osmo-bsc_nat/bsc_nat.c | 4 ++--
openbsc/src/osmo-bsc_nat/bsc_nat_utils.c | 1 -
7 files changed, 15 insertions(+), 15 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 1cbc7e1adf859a7d5b05fa0dbdde1bb0cb998041 (commit)
from 968a6c2365c0f772fa65ebe66466715d6861e7fc (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=1cbc7e1adf859a7d5b05fa0dbdde1bb0…
commit 1cbc7e1adf859a7d5b05fa0dbdde1bb0cb998041
Author: Keith <keith(a)rhizomatica.org>
Date: Tue Sep 12 11:32:12 2017 +0200
libmsc: Log Rx DELIVER-SM RESP before calling gsm411_send_rp_ack
This patch just makes the log match chronologically what
is happening. We receive the deliver_sm_resp before we send
the RP ACK to the MS.
Change-Id: I29270652957f58093be8bf7f2e898b0b4933bd93
-----------------------------------------------------------------------
Summary of changes:
openbsc/src/libmsc/smpp_smsc.c | 8 ++++----
1 file changed, 4 insertions(+), 4 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 "Octasic GSM PHY API header files for OsmoBTS".
The tag, OCTSDR-OPENBSC-02.08.00-B993 has been created
at aeb1acff47fae6a5744e3e2464e0e7d8a961f5b8 (commit)
- Log -----------------------------------------------------------------
commit aeb1acff47fae6a5744e3e2464e0e7d8a961f5b8
Author: Pau Espin Pedrol <pespin(a)sysmocom.de>
Date: Thu Sep 14 10:57:12 2017 +0200
Import headers from OCTSDR-OPENBSC-02.08.00-B993.tgz
-----------------------------------------------------------------------
hooks/post-receive
--
Octasic GSM PHY API header files for OsmoBTS
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 b2e41cc174e3423282a30fa7c40133350973e300 (commit)
from d64b6aed235f6e4d84a2cb8e84b32c3179260254 (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=b2e41cc174e3423282a30fa7c401…
commit b2e41cc174e3423282a30fa7c40133350973e300
Author: Neels Hofmeyr <neels(a)hofmeyr.de>
Date: Tue Sep 12 03:25:43 2017 +0200
osmo-auc-gen.c: squelch compiler warnings, move local var
The compiler thinks that ind or ind_mask may be used uninitialized, because it
doesn't analyze the conditionality of command line arguments and other
variables set accordingly. Make the compiler happy by zero initializing.
Change-Id: I9ddcb0525159da520aceaeb6e908a735a003bb5a
-----------------------------------------------------------------------
Summary of changes:
utils/osmo-auc-gen.c | 7 +++----
1 file changed, 3 insertions(+), 4 deletions(-)
hooks/post-receive
--
An utility library for Open Source Mobile Communications