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 2ecbf871301cdc36c0212dd7526fc94ffa4597d1 (commit)
from 62d7502b82cbe56211bcd4aa3a363757650fced3 (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=2ecbf871301cdc36c0212dd7526fc94…
commit 2ecbf871301cdc36c0212dd7526fc94ffa4597d1
Author: Harald Welte <laforge(a)gnumonks.org>
Date: Sun Dec 6 21:31:39 2015 +0100
use talloc pool for msgb and ortp library
by using a talloc pool, we avoid having to go back to the libc
malloc pool all the time. The msgb allocations and libortp allocations
happen quite frequently during processing and show up as one of the
high priority items in osmo-bts profiles on sysmoBTS with 14 concurrent
TCH/H calls (highest load scenario).
talloc still consumes significant CPU, this is mostly due to the
zero-initialization of all the associated buffers. Strictly speaking
we shouldn't need this, but any change there would require lots of
testing, as there might be hidden assumptions in the code?
In some percentage of cases, talloc still seems to fall back on malloc
for msgb allocations, which is currently a bit of a mystery. The pools
certainly are large enough, talloc_reprt() rarely reports more than a
few tens of kilobytes used by the msgb pool.
-----------------------------------------------------------------------
Summary of changes:
src/common/bts.c | 6 +++++-
src/osmo-bts-sysmo/main.c | 2 +-
2 files changed, 6 insertions(+), 2 deletions(-)
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 "Osmocom BTS-side code (Abis, scheduling, ...)".
The branch, master has been updated
via 62d7502b82cbe56211bcd4aa3a363757650fced3 (commit)
via 2d5481da278f8b09c4772d54f044ba2b26eeef14 (commit)
via 44bc9408b1dcc4d07f8aff9800d8fcf317954231 (commit)
via 02337e1d1d5a97c0c062c4d2cdc13bff7c17bae7 (commit)
from 437deb5f3a9dcfcb0c40ac8b44c20a5987907990 (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=62d7502b82cbe56211bcd4aa3a36375…
commit 62d7502b82cbe56211bcd4aa3a363757650fced3
Author: Harald Welte <laforge(a)gnumonks.org>
Date: Sat Dec 5 15:57:09 2015 +0100
osmo-bts-sysmo: Disable DSP trace flags by default
http://cgit.osmocom.org/osmo-bts/commit/?id=2d5481da278f8b09c4772d54f044ba2…
commit 2d5481da278f8b09c4772d54f044ba2b26eeef14
Author: Harald Welte <laforge(a)gnumonks.org>
Date: Sat Dec 5 11:54:08 2015 +0100
l1sap: Ensure we only pass PHY primitives of active lchans
In some situations, a PHY might send us a primitive for a logical
channel that is not (or no longer) active. Passing such primitives
higher up the stack is asking for trouble. Specifically, LAPDm
instances cannot accept messages once their instance has been released.
We introduce two new helper functions: get_lchan_by_chan_nr() as well as
get_active_lchan_by_chan_nr(). The former just centralizes the look-up
of the lchan by timeslot number and sub-slot number. The latter also
checks to ensure the lchan is active, which is used for PH-DATA / PH-RTS
primitives. To the contrary, MPH primitives generally don't require the
cahnnel to be active for processing.
http://cgit.osmocom.org/osmo-bts/commit/?id=44bc9408b1dcc4d07f8aff9800d8fcf…
commit 44bc9408b1dcc4d07f8aff9800d8fcf317954231
Author: Harald Welte <laforge(a)gnumonks.org>
Date: Thu Dec 3 19:54:38 2015 +0100
common/rsl.c: The presence of a valied measurement result is DEBUG
we shouldn't consider the presence of a valid measurement result
as something NOTICEable
http://cgit.osmocom.org/osmo-bts/commit/?id=02337e1d1d5a97c0c062c4d2cdc13bf…
commit 02337e1d1d5a97c0c062c4d2cdc13bff7c17bae7
Author: Harald Welte <laforge(a)gnumonks.org>
Date: Fri Nov 20 21:35:07 2015 +0100
sysmobts: Dont recycle PHY primitive for L1SAP in PH-DATA.ind
-----------------------------------------------------------------------
Summary of changes:
src/common/l1sap.c | 86 ++++++++++++++++++++++------------------------
src/common/rsl.c | 2 +-
src/osmo-bts-sysmo/l1_if.c | 34 ++++++++----------
src/osmo-bts-sysmo/main.c | 2 +-
4 files changed, 57 insertions(+), 67 deletions(-)
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 "An utility library for Open Source Mobile Communications".
The branch, master has been updated
via 90e614f7ccb0902e6ddb510bb10f78eb14a13d94 (commit)
from ee702cd590688c1e65296319c5bc4c9cf160ba65 (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=90e614f7ccb0902e6ddb510bb10f…
commit 90e614f7ccb0902e6ddb510bb10f78eb14a13d94
Author: Harald Welte <laforge(a)gnumonks.org>
Date: Sat Dec 5 23:38:18 2015 +0100
remove our internal copy of talloc, use system libtalloc
Shipping our own private copy of talloc was a good idea in 2008,
when it was not readily available on most target platforms. Today,
the situation is quite different, as it is a standard library on
major Linux distributions.
-----------------------------------------------------------------------
Summary of changes:
configure.ac | 55 +-
include/Makefile.am | 16 -
include/osmocom/core/talloc-internal.h | 189 ----
include/osmocom/core/talloc.h | 4 +
libosmoctrl.pc.in | 2 +-
libosmogb.pc.in | 2 +-
libosmogsm.pc.in | 2 +-
libosmosim.pc.in | 2 +-
libosmovty.pc.in | 2 +-
src/Makefile.am | 16 +-
src/ctrl/Makefile.am | 4 +-
src/gb/Makefile.am | 4 +-
src/gsm/Makefile.am | 4 +-
src/sim/Makefile.am | 4 +-
src/talloc.c | 1804 --------------------------------
src/vty/Makefile.am | 4 +-
tests/Makefile.am | 3 +-
17 files changed, 28 insertions(+), 2089 deletions(-)
delete mode 100644 include/osmocom/core/talloc-internal.h
create mode 100644 include/osmocom/core/talloc.h
delete mode 100644 src/talloc.c
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 3f015f04b1d5a63c3c134f2baa60e9a8c3c8e85e (commit)
via c14574b56795c2cffb18c45df9947e5ea26d22dc (commit)
via d8352d75b61ae72bb1142d3a3e9a546ad8704f73 (commit)
via c696cc28d8e61a50717e3c2e68a7cfe2d08c8a48 (commit)
from e1ba781f7b3d45b3e8f9ea87c3041e6980dcf946 (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=3f015f04b1d5a63c3c134f2baa60e9a8…
commit 3f015f04b1d5a63c3c134f2baa60e9a8c3c8e85e
Author: Harald Welte <laforge(a)gnumonks.org>
Date: Sat Dec 5 23:13:35 2015 +0100
bring the README into the 21st century
http://cgit.osmocom.org/openbsc/commit/?id=c14574b56795c2cffb18c45df9947e5e…
commit c14574b56795c2cffb18c45df9947e5ea26d22dc
Author: Harald Welte <laforge(a)gnumonks.org>
Date: Sat Dec 5 23:04:11 2015 +0100
AUTHORS: Add Jacob and Neels
http://cgit.osmocom.org/openbsc/commit/?id=d8352d75b61ae72bb1142d3a3e9a546a…
commit d8352d75b61ae72bb1142d3a3e9a546ad8704f73
Author: Harald Welte <laforge(a)gnumonks.org>
Date: Sat Dec 5 22:59:41 2015 +0100
remove old obsolete linux kernel and wireshark patches
Those were relevant in 2008/2009, but not today...
Also, move hlrsync to the contrib directory
http://cgit.osmocom.org/openbsc/commit/?id=c696cc28d8e61a50717e3c2e68a7cfe2…
commit c696cc28d8e61a50717e3c2e68a7cfe2d08c8a48
Author: Harald Welte <laforge(a)gnumonks.org>
Date: Sat Dec 5 16:19:21 2015 +0100
gsm_data_shared: compute/sprintf the lchan name only once
We now store the pre-printed lchan name in lchan->name to avoid having
to call sprintf every time there is a debug statement somewhere,
particularly as most of those debug statements are going to be inactive
most of the time.
-----------------------------------------------------------------------
Summary of changes:
linux-kernel/linux-2.6.27.4-misdn-abis.diff | 144 --
linux-kernel/linux-2.6.30-hfcmulti-multibts.patch | 486 ----
openbsc/AUTHORS | 2 +
openbsc/README | 47 +-
{hlrsync => openbsc/contrib/hlrsync}/hlrsync.py | 0
openbsc/include/openbsc/gsm_data_shared.h | 8 +-
openbsc/src/libcommon/gsm_data_shared.c | 5 +-
wireshark/0001-abis_oml.patch | 2462 ---------------------
wireshark/0002-ericsson_rbs2409.patch | 1926 ----------------
wireshark/0003-lucent-hnb.patch | 145 --
wireshark/0004-rsl-ipaccess.patch | 688 ------
wireshark/0005-rsl-hsl.patch | 272 ---
wireshark/0006-abis_oml-hsl.patch | 32 -
wireshark/README | 20 -
14 files changed, 38 insertions(+), 6199 deletions(-)
delete mode 100644 linux-kernel/linux-2.6.27.4-misdn-abis.diff
delete mode 100644 linux-kernel/linux-2.6.30-hfcmulti-multibts.patch
rename {hlrsync => openbsc/contrib/hlrsync}/hlrsync.py (100%)
delete mode 100644 wireshark/0001-abis_oml.patch
delete mode 100644 wireshark/0002-ericsson_rbs2409.patch
delete mode 100644 wireshark/0003-lucent-hnb.patch
delete mode 100644 wireshark/0004-rsl-ipaccess.patch
delete mode 100644 wireshark/0005-rsl-hsl.patch
delete mode 100644 wireshark/0006-abis_oml-hsl.patch
delete mode 100644 wireshark/README
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 "Python scripting interface to the OsmoNITB MNCC interface".
The branch, master has been updated
via 031b9c9006dc992f7d6bdbceae63ad5b786c81e1 (commit)
via fcc3baaa2d8f7eaf0d52c7f1d80f150c74cc8a8f (commit)
via 1b26694bca735fdc3b56c92dd58ccab32af25acc (commit)
via e5d8b99fe7247cc27d8890995bacff7caf8d6866 (commit)
via 5010316fd2185fdb9ad7bf37b4b9f9ef8f874dda (commit)
from 6ae54d430d8af3d224caab549bfae583f3980212 (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/mncc-python/commit/?id=031b9c9006dc992f7d6bdbceae63…
commit 031b9c9006dc992f7d6bdbceae63ad5b786c81e1
Author: Harald Welte <laforge(a)gnumonks.org>
Date: Sat Dec 5 22:41:57 2015 +0100
add smpp_test to generate SMS load via SMPP interface
It's not really related to MNCC, but in lack of a better suitable
repository, I'll commit it here for the time being.
http://cgit.osmocom.org/mncc-python/commit/?id=fcc3baaa2d8f7eaf0d52c7f1d80f…
commit fcc3baaa2d8f7eaf0d52c7f1d80f150c74cc8a8f
Author: Harald Welte <laforge(a)gnumonks.org>
Date: Sat Dec 5 16:13:05 2015 +0100
gsm_call_fsm: Less debug printf's
http://cgit.osmocom.org/mncc-python/commit/?id=1b26694bca735fdc3b56c92dd58c…
commit 1b26694bca735fdc3b56c92dd58ccab32af25acc
Author: Harald Welte <laforge(a)gnumonks.org>
Date: Sat Dec 5 16:12:26 2015 +0100
Terminate CallConnector when both GsmCallFsm enter NULL state again
http://cgit.osmocom.org/mncc-python/commit/?id=e5d8b99fe7247cc27d8890995bac…
commit e5d8b99fe7247cc27d8890995bacff7caf8d6866
Author: Harald Welte <laforge(a)gnumonks.org>
Date: Sat Dec 5 14:04:33 2015 +0100
GsmCallFsm: Print current state in __str__
http://cgit.osmocom.org/mncc-python/commit/?id=5010316fd2185fdb9ad7bf37b4b9…
commit 5010316fd2185fdb9ad7bf37b4b9f9ef8f874dda
Author: Harald Welte <laforge(a)gnumonks.org>
Date: Sat Dec 5 13:57:51 2015 +0100
GsmCallFsm: Initialize calling/called during constructor
-----------------------------------------------------------------------
Summary of changes:
gsm_call_fsm.py | 13 +++++--------
smpp_test.py | 52 ++++++++++++++++++++++++++++++++++++++++++++++++++++
2 files changed, 57 insertions(+), 8 deletions(-)
create mode 100755 smpp_test.py
hooks/post-receive
--
Python scripting interface to the OsmoNITB MNCC 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 "Python scripting interface to the OsmoNITB MNCC interface".
The branch, master has been updated
via 6ae54d430d8af3d224caab549bfae583f3980212 (commit)
via 8a6dce002627c1653158a4433971e94c0e920c6b (commit)
via 5b283e8942d845c5c6919c78a9ccf57c6c46da7c (commit)
via a5fce601217645242ac057ef1a32f7e830c0b50e (commit)
via 8ebb6355ef87544bc6dd57fd0b55f0ce4b99d94d (commit)
via 474d83e21a2ae03614af946082a1384ed115428f (commit)
via 79b7947191825180504d97d2b7101063fbfd363b (commit)
from e47c3eee45f9927ff7616654bbcfefe641d20a50 (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/mncc-python/commit/?id=6ae54d430d8af3d224caab549bfa…
commit 6ae54d430d8af3d224caab549bfae583f3980212
Author: Harald Welte <laforge(a)gnumonks.org>
Date: Sat Dec 5 13:46:44 2015 +0100
GsmCallFsm: Handle DTMF and HOLD requests from phones
we don't want the FSM to terminate in case such requests are received.
http://cgit.osmocom.org/mncc-python/commit/?id=8a6dce002627c1653158a4433971…
commit 8a6dce002627c1653158a4433971e94c0e920c6b
Author: Harald Welte <laforge(a)gnumonks.org>
Date: Sat Dec 5 13:46:26 2015 +0100
GsmCallFsm: Implement __str__() and use it
http://cgit.osmocom.org/mncc-python/commit/?id=5b283e8942d845c5c6919c78a9cc…
commit 5b283e8942d845c5c6919c78a9ccf57c6c46da7c
Author: Harald Welte <laforge(a)gnumonks.org>
Date: Sat Dec 5 13:30:46 2015 +0100
gcm_call_fsm: Allow user to specify which codec(s) are to be used
The user can submit a list of permitted codecs for a GsmCallFsm or
GsmCallConnector. This list is ordered by priority (highest first),
and the first matching codec is chosen.
TODO: Proper error handling in case no matching codec is found
http://cgit.osmocom.org/mncc-python/commit/?id=a5fce601217645242ac057ef1a32…
commit a5fce601217645242ac057ef1a32f7e830c0b50e
Author: Harald Welte <laforge(a)gnumonks.org>
Date: Thu Dec 3 15:43:02 2015 +0100
gsm_call_fsm: Implement classic MNCC_BRIDGE mode
In the classic MNCC_BRIDGE mode we ask the MSC to bridge the two
traffic channels itself. This works for E1 as well as for RTP
BTSs', and even accross mixed E1 and RTP environments.
http://cgit.osmocom.org/mncc-python/commit/?id=8ebb6355ef87544bc6dd57fd0b55…
commit 8ebb6355ef87544bc6dd57fd0b55f0ce4b99d94d
Author: Harald Welte <laforge(a)gnumonks.org>
Date: Thu Dec 3 13:55:19 2015 +0100
mncc.{h,py}: Add a gsm_mncc_bridge struct
this struct doesn't yet exist in upstream, but it should.
http://cgit.osmocom.org/mncc-python/commit/?id=474d83e21a2ae03614af946082a1…
commit 474d83e21a2ae03614af946082a1384ed115428f
Author: Harald Welte <laforge(a)gnumonks.org>
Date: Thu Dec 3 13:54:40 2015 +0100
gsm_call_fsm: Add get_callref method to GsmCallFsm
... and obtain the call references into the GsmCallConnector
http://cgit.osmocom.org/mncc-python/commit/?id=79b7947191825180504d97d2b710…
commit 79b7947191825180504d97d2b7101063fbfd363b
Author: Harald Welte <laforge(a)gnumonks.org>
Date: Wed Dec 2 00:51:11 2015 +0100
typo fix
-----------------------------------------------------------------------
Summary of changes:
README | 2 +-
gsm_call_fsm.py | 126 ++++-
mncc.h | 5 +
mncc.py | 88 ++--
mncc.xml | 1386 ++++++++++++++++++++++++++++---------------------------
mncc_sock.py | 10 +
mncc_test.py | 6 +-
7 files changed, 882 insertions(+), 741 deletions(-)
hooks/post-receive
--
Python scripting interface to the OsmoNITB MNCC 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 "Tools to centralize packet capture and storing".
The branch, master has been updated
via c016b5d3824923c2b35c67cfb9930a30e564f07e (commit)
from 66b80cc8f5ea4e99dab1b36f122d75395129a74e (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-pcap/commit/?id=c016b5d3824923c2b35c67cfb9930a…
commit c016b5d3824923c2b35c67cfb9930a30e564f07e
Author: Holger Hans Peter Freyther <holger(a)moiji-mobile.com>
Date: Thu Dec 3 22:17:26 2015 +0100
Make a new release with 64bit client fixes
-----------------------------------------------------------------------
Summary of changes:
debian/changelog | 6 ++++++
1 file changed, 6 insertions(+)
hooks/post-receive
--
Tools to centralize packet capture and storing
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 "Tools to centralize packet capture and storing".
The branch, master has been updated
via 66b80cc8f5ea4e99dab1b36f122d75395129a74e (commit)
via fbdcf593f80d4fe5330376674136fd76fcef5ea2 (commit)
from 42421c4f7e8dd199f358a956a3a5c5dca557f1f5 (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-pcap/commit/?id=66b80cc8f5ea4e99dab1b36f122d75…
commit 66b80cc8f5ea4e99dab1b36f122d75395129a74e
Author: Holger Hans Peter Freyther <holger(a)moiji-mobile.com>
Date: Thu Dec 3 22:13:38 2015 +0100
client: Deal with external representation for pcap files
We need to convert the 64bit timeval on a 64bit userspace (or on
OpenBSD) into a 32bit truncated value for being able to write the
file. This means we have 2038 issue here?
http://cgit.osmocom.org/osmo-pcap/commit/?id=fbdcf593f80d4fe5330376674136fd…
commit fbdcf593f80d4fe5330376674136fd76fcef5ea2
Author: Holger Hans Peter Freyther <holger(a)moiji-mobile.com>
Date: Thu Dec 3 20:41:28 2015 +0100
debian: Make a new release
-----------------------------------------------------------------------
Summary of changes:
debian/changelog | 8 ++++++++
debian/rules | 3 +++
include/osmo-pcap/wireformat.h | 12 ++++++++++++
src/osmo_client_network.c | 9 ++++++---
4 files changed, 29 insertions(+), 3 deletions(-)
hooks/post-receive
--
Tools to centralize packet capture and storing
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 "Tools to centralize packet capture and storing".
The branch, master has been updated
via 42421c4f7e8dd199f358a956a3a5c5dca557f1f5 (commit)
via ff1a5dc75152fb72cd4597036f9c6c712f1c1436 (commit)
via 26327bd0ce2e3f11c9d02511c47fb45bb705b0e3 (commit)
from a316c9394aa27d25b3d7fba004563890a43ab1bc (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-pcap/commit/?id=42421c4f7e8dd199f358a956a3a5c5…
commit 42421c4f7e8dd199f358a956a3a5c5dca557f1f5
Author: Holger Hans Peter Freyther <holger(a)moiji-mobile.com>
Date: Thu Dec 3 20:16:37 2015 +0100
client: Allow receiving jumbo frames on the client as well
Check the caplen and see if it is bigger than our assumed
maximum. Make sure we have enough space for data+hdr+hdr.
http://cgit.osmocom.org/osmo-pcap/commit/?id=ff1a5dc75152fb72cd4597036f9c6c…
commit ff1a5dc75152fb72cd4597036f9c6c712f1c1436
Author: Holger Hans Peter Freyther <holger(a)moiji-mobile.com>
Date: Thu Dec 3 19:32:04 2015 +0100
server: Deal with jumbo frames on the wire
The 2000 as a number is too small. Modern networks can have a
higher MTU (up to 9000). Take this number and assume there is
a big header in front of it.
http://cgit.osmocom.org/osmo-pcap/commit/?id=26327bd0ce2e3f11c9d02511c47fb4…
commit 26327bd0ce2e3f11c9d02511c47fb45bb705b0e3
Author: Holger Hans Peter Freyther <holger(a)moiji-mobile.com>
Date: Thu Dec 3 19:29:38 2015 +0100
server: Fix the language and refer to the received data length
-----------------------------------------------------------------------
Summary of changes:
include/osmo-pcap/osmo_pcap_server.h | 6 +++++-
src/osmo_client_core.c | 2 +-
src/osmo_client_network.c | 11 +++++++++--
src/osmo_server_network.c | 4 ++--
4 files changed, 17 insertions(+), 6 deletions(-)
hooks/post-receive
--
Tools to centralize packet capture and storing
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, neels/gtphub has been updated
via f03f63a185b6a3e941f63f4c0acc644ec6c9c24c (commit)
from e1ba781f7b3d45b3e8f9ea87c3041e6980dcf946 (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=f03f63a185b6a3e941f63f4c0acc644e…
commit f03f63a185b6a3e941f63f4c0acc644ec6c9c24c
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Thu Dec 3 14:52:33 2015 +0100
gtphub: fix missing newline in log output
-----------------------------------------------------------------------
Summary of changes:
openbsc/src/gprs/gtphub.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
hooks/post-receive
--
The OpenBSC GSM Base Station Controller (+MSC/HLR/SGSN)