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 A-bis protcol interface library".
The branch, master has been updated
via beb10ef02a10d73537a97f6f21aad36664c9b266 (commit)
from 8a3be282ab265a2587608e471b274dda200eae84 (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-abis/commit/?id=beb10ef02a10d73537a97f6f21a…
commit beb10ef02a10d73537a97f6f21aad36664c9b266
Author: Alexander Couzens <lynxis(a)fe80.eu>
Date: Tue Nov 1 22:05:13 2016 +0100
add basic unixsocket support
Allow to connect to a unix socket for communicating with LAPD.
Change-Id: Ia5723b09a5c68a0505829dc732def981e60a907a
-----------------------------------------------------------------------
Summary of changes:
include/Makefile.am | 3 +-
include/osmocom/abis/e1_input.h | 4 +
include/osmocom/abis/unixsocket_proto.h | 31 +++
src/Makefile.am | 3 +-
src/e1_input.c | 2 +
src/e1_input_vty.c | 25 ++-
src/input/unixsocket.c | 347 ++++++++++++++++++++++++++++++++
7 files changed, 411 insertions(+), 4 deletions(-)
create mode 100644 include/osmocom/abis/unixsocket_proto.h
create mode 100644 src/input/unixsocket.c
hooks/post-receive
--
Osmocom A-bis protcol 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 "The OpenBSC GSM Base Station Controller (+MSC/HLR/SGSN)".
The branch, master has been updated
via 6d804b1a7e375213cb4b3e437c2b9b8c68872164 (commit)
from abf53d87b6648f2d42562c5699e9035afd92e608 (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=6d804b1a7e375213cb4b3e437c2b9b8c…
commit 6d804b1a7e375213cb4b3e437c2b9b8c68872164
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Sat Feb 18 22:20:46 2017 +0100
add struct bsc_subscr, separating libbsc from gsm_subscriber
In a future commit, gsm_subscriber will be replaced by vlr_subscr, and it will
not make sense to use vlr_subscr in libbsc. Thus we need a dedicated BSC
subscriber: struct bsc_subscr.
Add rf_policy arg to bsc_grace_paging_request() because the bsc_subscr will no
longer have a backpointer to gsm_network (used to be via subscr->group).
Create a separate logging filter for the new BSC subscriber. The implementation
of adjusting the filter context is added in libbsc to not introduce
bsc_subscr_get/_put() dependencies to libcommon.
During Paging Response, fetch a bsc_subscr from the mobile identity, like we do
for the gsm_subscriber. It looks like a duplication now, but will make sense
for the VLR as well as for future MSC split patches.
Naming: it was requested to not name the new struct bsc_sub, because 'sub' is
too ambiguous. At the same time it would be fine to have 'bsc_sub_' as function
prefix. Instead of struct bsc_subscriber and bsc_sub_ prefix, I decided to
match both up as struct bsc_subscr and bsc_subscr_ function prefix. It's fast
to type, relatively short, unambiguous, and the naming is consistent.
Add bsc_subscr unit test.
Related: OS#1592, OS#1594
Change-Id: Ia61cc00e8bb186b976939a4fc8f7cf9ce6aa3d8e
-----------------------------------------------------------------------
Summary of changes:
openbsc/.gitignore | 1 +
openbsc/include/openbsc/Makefile.am | 1 +
openbsc/include/openbsc/bsc_subscriber.h | 43 ++++++++
openbsc/include/openbsc/debug.h | 3 +-
openbsc/include/openbsc/gsm_04_08.h | 4 +-
openbsc/include/openbsc/gsm_data.h | 12 +++
openbsc/include/openbsc/osmo_bsc_grace.h | 6 +-
openbsc/include/openbsc/paging.h | 17 +--
openbsc/src/libbsc/Makefile.am | 1 +
openbsc/src/libbsc/abis_rsl.c | 4 +-
openbsc/src/libbsc/bsc_subscriber.c | 168 ++++++++++++++++++++++++++++++
openbsc/src/libbsc/bsc_vty.c | 12 ++-
openbsc/src/libbsc/gsm_04_08_utils.c | 20 ++--
openbsc/src/libbsc/paging.c | 88 ++++++++--------
openbsc/src/libcommon-cs/common_cs.c | 3 +
openbsc/src/libcommon/debug.c | 12 ++-
openbsc/src/libmsc/gsm_04_08.c | 29 +++++-
openbsc/src/libmsc/gsm_subscriber.c | 30 +++++-
openbsc/src/libmsc/vty_interface_layer3.c | 14 ++-
openbsc/src/osmo-bsc/osmo_bsc_bssap.c | 11 +-
openbsc/src/osmo-bsc/osmo_bsc_filter.c | 26 ++---
openbsc/src/osmo-bsc/osmo_bsc_grace.c | 21 ++--
openbsc/src/osmo-bsc/osmo_bsc_vty.c | 15 ++-
openbsc/tests/channel/Makefile.am | 2 +-
openbsc/tests/channel/channel_test.c | 3 +-
openbsc/tests/subscr/Makefile.am | 19 ++++
openbsc/tests/subscr/bsc_subscr_test.c | 130 +++++++++++++++++++++++
openbsc/tests/subscr/bsc_subscr_test.err | 17 +++
openbsc/tests/subscr/bsc_subscr_test.ok | 11 ++
openbsc/tests/testsuite.at | 7 ++
30 files changed, 615 insertions(+), 115 deletions(-)
create mode 100644 openbsc/include/openbsc/bsc_subscriber.h
create mode 100644 openbsc/src/libbsc/bsc_subscriber.c
create mode 100644 openbsc/tests/subscr/bsc_subscr_test.c
create mode 100644 openbsc/tests/subscr/bsc_subscr_test.err
create mode 100644 openbsc/tests/subscr/bsc_subscr_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 "UNNAMED PROJECT".
The branch, master has been updated
via 5ecdc56ad4a435d923fd3982769ac94b52f103a7 (commit)
from 9cacb6f74b73f90d79aa53f707124cceee19f8af (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=5ecdc56ad4a435d923fd3982769ac94…
commit 5ecdc56ad4a435d923fd3982769ac94b52f103a7
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Fri Feb 24 06:38:04 2017 +0100
fix: properly handle error rc by osmo_gsup_conn_ccm_get()
Change-Id: I70e4a5e75dd596052e61df9a6ad52b7f56fb6b26
-----------------------------------------------------------------------
Summary of changes:
src/gsup_server.c | 10 ++++++++--
1 file changed, 8 insertions(+), 2 deletions(-)
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 Open Source GSM Base Band stack".
The branch, stumpf/virt-phy has been updated
via 7f1cb52d27d184e928c17971799283d1f399f0fb (commit)
via eebe9b59d77bec20d8390439e8254a2e72a29823 (commit)
from af96a5b92ff78965a61d8eaf3ec38d84a90396a3 (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=7f1cb52d27d184e928c1797179928…
commit 7f1cb52d27d184e928c17971799283d1f399f0fb
Author: Sebastian Stumpf <sebastian.stumpf87(a)googlemail.com>
Date: Tue Mar 7 17:59:54 2017 +0100
VIRT-PHY: Add downlink filter for msg on dedicated channels.
Messages incoming on dedicated channel (SDCCH/8, SDCCH/4) are no longer
forwarded to l23 if their timeslot/subchannel is not fitting the ones
configured by l23 via L1CTL_DM_EST_REQ.
http://cgit.osmocom.org/osmocom-bb/commit/?id=eebe9b59d77bec20d8390439e8254…
commit eebe9b59d77bec20d8390439e8254a2e72a29823
Author: Sebastian Stumpf <sebastian.stumpf87(a)googlemail.com>
Date: Tue Mar 7 17:55:57 2017 +0100
L23-MOBILE: Make config path configurable.
Adding config-path options to command line arguments.
-c /path/to/config
-----------------------------------------------------------------------
Summary of changes:
src/host/layer23/src/mobile/main.c | 35 ++++++++++++++++-------
src/host/virt_phy/include/virtphy/virt_l1_model.h | 1 +
src/host/virt_phy/src/gsmtapl1_if.c | 22 +++++++-------
src/host/virt_phy/src/l1ctl_sap.c | 9 +++---
src/host/virt_phy/src/virtphy.c | 2 +-
5 files changed, 42 insertions(+), 27 deletions(-)
hooks/post-receive
--
The Open Source GSM Base Band stack
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 abf53d87b6648f2d42562c5699e9035afd92e608 (commit)
from 0b61932e7f1efd8d6f914da48d9304ff31c9d6d1 (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=abf53d87b6648f2d42562c5699e9035a…
commit abf53d87b6648f2d42562c5699e9035afd92e608
Author: Max <msuraev(a)sysmocom.de>
Date: Wed Jan 25 16:19:20 2017 +0100
Add MS time. offset to gsm_lchan
Add MS TIMING OFFSET (3GPP TS 48.058 § 8.4.8) and P offset (3GPP TS
45.010 § 1.2) which can be used to compute MS TO from known TA.
This will be used by osmo-bts (see
I4dfe5c48834a083e757d5de3236a02e15a238b28) to provide MS TO as part of
RSL MEASUREMENT RESULT.
Change-Id: I8bda57c8d6c15bbb803eca708931556dae118a00
Related: OS#1574
-----------------------------------------------------------------------
Summary of changes:
openbsc/include/openbsc/gsm_data_shared.h | 6 ++++++
1 file changed, 6 insertions(+)
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 b14caa0ab9c6b8b8671171a238ab70eb66cf5bbe (commit)
from 3262f820b5cfb4c76448f605c9804f3e5ca1023d (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=b14caa0ab9c6b8b8671171a238ab…
commit b14caa0ab9c6b8b8671171a238ab70eb66cf5bbe
Author: Max <msuraev(a)sysmocom.de>
Date: Tue Mar 7 15:36:33 2017 +0100
libosmocoding: fix .deb building
dpkg-buildpackage fails due to missing file descriptions - add necessary
.install and .doc-base files to fix it.
Change-Id: I5fb7e813c0860a3b5037e805deb84f9bf649ffa3
-----------------------------------------------------------------------
Summary of changes:
debian/libosmocoding-doc.doc-base | 7 +++++++
debian/libosmocoding-doc.install | 1 +
debian/libosmocoding0.install | 1 +
3 files changed, 9 insertions(+)
create mode 100644 debian/libosmocoding-doc.doc-base
create mode 100644 debian/libosmocoding-doc.install
create mode 100644 debian/libosmocoding0.install
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 "MNCC <-> SIP bridge".
The branch, master has been updated
via 49880ddf740a7af47a1247dbff9acb34087b6afc (commit)
via 068f54795495d478e51d40dfcd390ce005933f9d (commit)
from 7166d0f448eae451b1a6287b522c0fc82387b05b (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=49880ddf740a7af47a124…
commit 49880ddf740a7af47a1247dbff9acb34087b6afc
Author: Holger Hans Peter Freyther <holger(a)moiji-mobile.com>
Date: Mon Mar 6 10:02:37 2017 +0100
mncc: Fix use after free on mncc socket disconnection
When the MNCC socket breaks down we would release all callds but when
there is no remote call the call would be released before
if (call->remote)
...
is being executed leading to a use after free. Fix it by copying the
legs first and assuming the call will be gone after that.
==3618== Invalid read of size 4
==3618== at 0x804A18A: app_mncc_disconnected (app.c:49)
==3618== by 0x804B52D: close_connection (mncc.c:255)
==3618== by 0x804BCFA: mncc_rtp_send.constprop.13 (mncc.c:145)
==3618== by 0x804CC86: check_setup (mncc.c:435)
==3618== by 0x804CC86: mncc_data (mncc.c:795)
==3618== by 0x42FCF94: osmo_fd_disp_fds (select.c:167)
==3618== by 0x804D1F2: evpoll (evpoll.c:92)
==3618== by 0x4205053: ??? (in /lib/i386-linux-gnu/libglib-2.0.so.0.4200.1)
==3618== by 0x4205478: g_main_loop_run (in /lib/i386-linux-gnu/libglib-2.0.so.0.4200.1)
==3618== by 0x8049AA6: main (main.c:171)
==3618== Address 0x47f3258 is 64 bytes inside a block of size 76 free'd
==3618== at 0x402A3A8: free (vg_replace_malloc.c:473)
==3618== by 0x42E7FD1: ??? (in /usr/lib/i386-linux-gnu/libtalloc.so.2.1.5)
==3618== by 0x804A3FD: call_leg_release (call.c:87)
==3618== by 0x804A186: app_mncc_disconnected (app.c:48)
==3618== by 0x804B52D: close_connection (mncc.c:255)
==3618== by 0x804BCFA: mncc_rtp_send.constprop.13 (mncc.c:145)
==3618== by 0x804CC86: check_setup (mncc.c:435)
==3618== by 0x804CC86: mncc_data (mncc.c:795)
==3618== by 0x42FCF94: osmo_fd_disp_fds (select.c:167)
==3618== by 0x804D1F2: evpoll (evpoll.c:92)
==3618== by 0x4205053: ??? (in /lib/i386-linux-gnu/libglib-2.0.so.0.4200.1)
==3618== by 0x4205478: g_main_loop_run (in /lib/i386-linux-gnu/libglib-2.0.so.0.4200.1)
==3618== by 0x8049AA6: main (main.c:171)
==3618==
Change-Id: I1889013ed315f896e4295358f6daf76ce523dc2a
http://cgit.osmocom.org/osmo-sip-connector/commit/?id=068f54795495d478e51d4…
commit 068f54795495d478e51d40dfcd390ce005933f9d
Author: Holger Hans Peter Freyther <holger(a)moiji-mobile.com>
Date: Mon Mar 6 09:50:26 2017 +0100
call: Fix call release handling on mncc connection loss
The app_mncc_disconnected will be called when the MNCC socket is down
and lead to all calls being released. It directly released the call but
did not stop the MNCC CMD timer. Go through the call release callback.
==3618== at 0x804A18A: app_mncc_disconnected (app.c:49)
==3618== by 0x804B52D: close_connection (mncc.c:255)
This lead to the timer not being removed:
==3593== Invalid read of size 4
==3593== at 0x4305D42: rb_first (rbtree.c:294)
==3593== by 0x42FCB37: osmo_timers_update (timer.c:220)
==3593== by 0x804D1D5: evpoll (evpoll.c:89)
==3593== by 0x4205053: ??? (in /lib/i386-linux-gnu/libglib-2.0.so.0.4200.1)
==3593== by 0x4205478: g_main_loop_run (in /lib/i386-linux-gnu/libglib-2.0.so.0.4200.1)
==3593== by 0x8049AA6: main (main.c:171)
==3593== Address 0x47f3380 is 232 bytes inside a block of size 272 free'd
==3593== at 0x402A3A8: free (vg_replace_malloc.c:473)
==3593== by 0x42E7FD1: ??? (in /usr/lib/i386-linux-gnu/libtalloc.so.2.1.5)
==3593== by 0x804A3C4: call_leg_release (call.c:83)
==3593== by 0x804A188: app_mncc_disconnected (app.c:48)
==3593== by 0x804B52D: close_connection (mncc.c:255)
==3593== by 0x804BCFA: mncc_rtp_send.constprop.13 (mncc.c:145)
==3593== by 0x804CC86: check_setup (mncc.c:435)
==3593== by 0x804CC86: mncc_data (mncc.c:795)
==3593== by 0x42FCF94: osmo_fd_disp_fds (select.c:167)
==3593== by 0x804D1F2: evpoll (evpoll.c:92)
==3593== by 0x4205053: ??? (in /lib/i386-linux-gnu/libglib-2.0.so.0.4200.1)
==3593== by 0x4205478: g_main_loop_run (in /lib/i386-linux-gnu/libglib-2.0.so.0.4200.1)
==3593== by 0x8049AA6: main (main.c:171)
Change-Id: I2e8e14b3983f84c9be046bbd96bbcd1e5766993e
-----------------------------------------------------------------------
Summary of changes:
src/app.c | 17 ++++++++++++-----
1 file changed, 12 insertions(+), 5 deletions(-)
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 "MNCC <-> SIP bridge".
The branch, master has been updated
via 7166d0f448eae451b1a6287b522c0fc82387b05b (commit)
from 42b073a233740e0e0125e99e4bea29ac7d3d27ed (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=7166d0f448eae451b1a62…
commit 7166d0f448eae451b1a6287b522c0fc82387b05b
Author: Holger Hans Peter Freyther <holger(a)moiji-mobile.com>
Date: Sun Mar 5 16:47:57 2017 +0100
contrib: Add Dockerfile to build and configure a FreeSWITCH
Rhizomatica is using FreeSWITCH and we should have an easy way to
test against it. A docker container with exposed ports seems like
the easiest. FreeSWITCH by default is giving us some exmaple numbers:
* 5000 a menu... that allows DTMF
* 9195 an echo test
* 9198 tetris.
The config is copied on top of the default/big config that is
installed. If this PBX should be reached from the outside one needs
to change 127.0.0.1 to the external address and maybe configure the
acl as well to add more CIDRs.
Besides that
make container
make run
Will build it and start the container. Takes a bit of time and requires
docker. With it configure one can see things like:
2017-03-05 15:32:49.913912 [INFO] switch_channel.c:515 RECV DTMF 3:2000
2017-03-05 15:32:50.952752 [INFO] switch_channel.c:515 RECV DTMF 2:2000
Now to test DTMF in the system.
Change-Id: I7f3aa8c81b9e8698df090a05d2e41a41b67d8e3c
-----------------------------------------------------------------------
Summary of changes:
contrib/testpbx/Dockerfile | 25 +
contrib/testpbx/Makefile | 12 +
contrib/testpbx/README | 29 ++
contrib/testpbx/configs/acl.conf.xml | 34 ++
contrib/testpbx/configs/default.xml | 832 ++++++++++++++++++++++++++++++++
contrib/testpbx/configs/internal.xml | 422 ++++++++++++++++
contrib/testpbx/configs/public.xml | 68 +++
contrib/testpbx/configs/switch.conf.xml | 181 +++++++
contrib/testpbx/configs/vars.xml | 450 +++++++++++++++++
9 files changed, 2053 insertions(+)
create mode 100644 contrib/testpbx/Dockerfile
create mode 100644 contrib/testpbx/Makefile
create mode 100644 contrib/testpbx/README
create mode 100644 contrib/testpbx/configs/acl.conf.xml
create mode 100644 contrib/testpbx/configs/default.xml
create mode 100644 contrib/testpbx/configs/internal.xml
create mode 100644 contrib/testpbx/configs/public.xml
create mode 100644 contrib/testpbx/configs/switch.conf.xml
create mode 100644 contrib/testpbx/configs/vars.xml
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 "An utility library for Open Source Mobile Communications".
The branch, master has been updated
via 3262f820b5cfb4c76448f605c9804f3e5ca1023d (commit)
from 68930e85b5945db8ffea055fd178bc1f88b31d99 (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=3262f820b5cfb4c76448f605c980…
commit 3262f820b5cfb4c76448f605c9804f3e5ca1023d
Author: Vadim Yanitskiy <axilirator(a)gmail.com>
Date: Fri Sep 23 01:48:59 2016 +0700
libosmocoding: migrate transcoding routines from OsmoBTS
There are some projects, such as GR-GSM and OsmocomBB, which would
benefit from using one shared implementation of GSM 05.03 code. So,
this commit introduces a new sub-library called libosmocoding, which
(for now) provides GSM, GPRS and EDGE transcoding routines, migrated
from OsmoBTS.
The original GSM 05.03 code from OsmoBTS was relicensed under
GPLv2-or-later with permission of copyright holders (Andreas Eversberg,
Alexander Chemeris and Tom Tsou).
The following data types are currently supported:
- xCCH
- PDTCH (CS 1-4 and MCS 1-9)
- TCH/FR
- TCH/HR
- TCH/AFS
- RCH/AHS
- RACH
- SCH
Change-Id: I0c3256b87686d878e4e716d12393cad5924fdfa1
-----------------------------------------------------------------------
Summary of changes:
.gitignore | 3 +
Doxyfile.codec.in => Doxyfile.coding.in | 10 +-
Makefile.am | 16 +-
configure.ac | 4 +
debian/control | 34 +
include/Makefile.am | 5 +
include/osmocom/coding/gsm0503_coding.h | 63 +
include/osmocom/coding/gsm0503_interleaving.h | 51 +
include/osmocom/coding/gsm0503_mapping.h | 33 +
include/osmocom/coding/gsm0503_parity.h | 13 +
include/osmocom/coding/gsm0503_tables.h | 50 +
libosmocodec.pc.in => libosmocoding.pc.in | 4 +-
src/coding/Makefile.am | 27 +
src/coding/gsm0503_coding.c | 2681 +++++++++++++++++++++++++
src/coding/gsm0503_interleaving.c | 573 ++++++
src/coding/gsm0503_mapping.c | 291 +++
src/coding/gsm0503_parity.c | 132 ++
src/coding/gsm0503_tables.c | 1732 ++++++++++++++++
src/coding/libosmocoding.map | 117 ++
src/gsm/libosmogsm.map | 2 +
tests/Makefile.am | 12 +-
tests/coding/coding_test.c | 501 +++++
tests/coding/coding_test.ok | 21 +
tests/testsuite.at | 6 +
utils/conv_codes_gsm.py | 24 +
25 files changed, 6391 insertions(+), 14 deletions(-)
copy Doxyfile.codec.in => Doxyfile.coding.in (99%)
create mode 100644 include/osmocom/coding/gsm0503_coding.h
create mode 100644 include/osmocom/coding/gsm0503_interleaving.h
create mode 100644 include/osmocom/coding/gsm0503_mapping.h
create mode 100644 include/osmocom/coding/gsm0503_parity.h
create mode 100644 include/osmocom/coding/gsm0503_tables.h
copy libosmocodec.pc.in => libosmocoding.pc.in (61%)
create mode 100644 src/coding/Makefile.am
create mode 100644 src/coding/gsm0503_coding.c
create mode 100644 src/coding/gsm0503_interleaving.c
create mode 100644 src/coding/gsm0503_mapping.c
create mode 100644 src/coding/gsm0503_parity.c
create mode 100644 src/coding/gsm0503_tables.c
create mode 100644 src/coding/libosmocoding.map
create mode 100644 tests/coding/coding_test.c
create mode 100644 tests/coding/coding_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 "Osmocom BTS-side code (Abis, scheduling, ...)".
The branch, master has been updated
via 4acc98e68a6ee0f3ab39ac4d7bcf090b55969825 (commit)
from 758522947f2937a1d17b6c3988b03abc80bd0051 (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=4acc98e68a6ee0f3ab39ac4d7bcf090…
commit 4acc98e68a6ee0f3ab39ac4d7bcf090b55969825
Author: Max <msuraev(a)sysmocom.de>
Date: Thu Jan 19 13:02:36 2017 +0100
Use oml-alert CTRL command for temp report
Send temperature reports via OML alert facility exposed by CTRL
protocol.
Change-Id: If29fbd0ab01fefc76e87b90cf1fbc81b2089ba76
Related: OS#1615
-----------------------------------------------------------------------
Summary of changes:
src/osmo-bts-sysmo/Makefile.am | 2 +-
src/osmo-bts-sysmo/misc/sysmobts_mgr.c | 29 ++++++++++++++++++--
src/osmo-bts-sysmo/misc/sysmobts_mgr.h | 5 ++--
src/osmo-bts-sysmo/misc/sysmobts_mgr_temp.c | 42 +++++++++++++++++++++++------
4 files changed, 65 insertions(+), 13 deletions(-)
hooks/post-receive
--
Osmocom BTS-side code (Abis, scheduling, ...)