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 7f3724e04d3916ccb9ae7fd5dd0352208159a7cf (commit)
from 4aa75e74f48b06ecadc37dffe2875c93fd6ee674 (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=7f3724e04d3916ccb9ae7fd5dd035220…
commit 7f3724e04d3916ccb9ae7fd5dd0352208159a7cf
Author: Vadim Yanitskiy <axilirator(a)gmail.com>
Date: Fri Mar 31 23:27:44 2017 +0700
VTY: add the dyn_ts_allow_tch_f option
This option allows to enable or disable TCH/F allocation on the
TCH/F_TCH/H_PDCH timeslots. Until now, source code modification
was required to enable this feature.
Related: OS#1778
Change-Id: Id18cab25844dc854a66b4e2713e90c3f43afa712
-----------------------------------------------------------------------
Summary of changes:
openbsc/include/openbsc/gsm_data.h | 1 -
openbsc/src/libbsc/bsc_vty.c | 2 ++
openbsc/src/libcommon-cs/common_cs_vty.c | 13 +++++++++++++
openbsc/src/osmo-nitb/bsc_hack.c | 27 ++++++++++++++-------------
4 files changed, 29 insertions(+), 14 deletions(-)
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 "SCCP Library".
The branch, laforge/sigtran-squashed has been updated
discards e996d42e2672eba966382898da1dd4fd07b12153 (commit)
via 73fb1bf3dae54e5de7ab77d0d55a949d04da523d (commit)
via 4cb71603a194e2463db38eb518411d2277070e0f (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 (e996d42e2672eba966382898da1dd4fd07b12153)
\
N -- N -- N (73fb1bf3dae54e5de7ab77d0d55a949d04da523d)
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/libosmo-sccp/commit/?id=73fb1bf3dae54e5de7ab77d0d55…
commit 73fb1bf3dae54e5de7ab77d0d55a949d04da523d
Author: Harald Welte <laforge(a)gnumonks.org>
Date: Sun Apr 2 21:58:15 2017 +0200
SS7 MTP HMRT: Implement "loopback device" functionality
The state diagrams as per ITUT Q.704 don't seem to consider the
possibility of one local MTP-USER wanting to talk to another local
MTP-USER, i.e. loopback communication between sub-systems. In order to
enable this, we use message discriminiation (HMDC) not only for messages
from L2, but also for locally outgoing MTP-TRANSFER.req.
Change-Id: I5ea3237103e0e774fc6121bd765e67980991eda3
http://cgit.osmocom.org/libosmo-sccp/commit/?id=4cb71603a194e2463db38eb5184…
commit 4cb71603a194e2463db38eb518411d2277070e0f
Author: Harald Welte <laforge(a)gnumonks.org>
Date: Sun Feb 12 19:47:08 2017 +0100
WIP: New SIGTRAN world
Change-Id: I118e4eeffe92bbbac53a34c24545d4306cdd2c23
-----------------------------------------------------------------------
Summary of changes:
.gitignore | 11 +-
configure.ac | 2 +-
examples/Makefile.am | 2 +
examples/sua_client.c | 140 +---------------
include/osmocom/sigtran/Makefile.am | 4 +-
include/osmocom/sigtran/osmo_ss7.h | 27 +++
include/osmocom/sigtran/sccp_sap.h | 1 +
include/osmocom/sigtran/sua.h | 21 ---
src/osmo_ss7.c | 128 +++++++++-----
src/osmo_ss7_hmrt.c | 10 +-
src/sccp.c | 32 ++--
src/sccp_internal.h | 2 +
src/sccp_sclc.c | 4 +-
src/sccp_scoc.c | 293 +++++++++++++++++++++++++++++---
src/sccp_scrc.c | 2 +-
src/sccp_user.c | 191 ++++++++++++++++++++-
src/xua_internal.h | 3 +-
tests/Makefile.am | 2 +-
tests/sigtran/Makefile.am | 11 --
tests/sigtran/sua_client_test.c | 56 -------
tests/sigtran/sua_server_test.c | 78 ---------
tests/sigtran/sua_test_common.c | 87 ----------
tests/sigtran/sua_test_common.h | 32 ----
tests/ss7/Makefile.am | 12 ++
tests/ss7/ss7_test.c | 321 ++++++++++++++++++++++++++++++++++++
tests/ss7/ss7_test.err | 49 ++++++
tests/ss7/ss7_test.ok | 27 +++
tests/testsuite.at | 12 ++
tests/xua/Makefile.am | 17 +-
tests/xua/xua_test.c | 2 +-
tests/xua/xua_test.ok | 131 +++++++++++++++
31 files changed, 1191 insertions(+), 519 deletions(-)
delete mode 100644 include/osmocom/sigtran/sua.h
delete mode 100644 tests/sigtran/Makefile.am
delete mode 100644 tests/sigtran/sua_client_test.c
delete mode 100644 tests/sigtran/sua_server_test.c
delete mode 100644 tests/sigtran/sua_test_common.c
delete mode 100644 tests/sigtran/sua_test_common.h
create mode 100644 tests/ss7/Makefile.am
create mode 100644 tests/ss7/ss7_test.c
create mode 100644 tests/ss7/ss7_test.err
create mode 100644 tests/ss7/ss7_test.ok
create mode 100644 tests/xua/xua_test.ok
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 "An utility library for Open Source Mobile Communications".
The branch, pmaier/aoip has been updated
discards 6a531ba847b955a926ab376bd610afb16aab38c0 (commit)
discards 95d4cede17d3ce88601e175eadc3720b607755f8 (commit)
discards 485b006427ca4681cdb99a6bfba0d5448b3b7d99 (commit)
discards 2de2db7c07f05ff4987d7df807254f0242d1f0ad (commit)
discards 210836e4a7d3c3c79c0a342cb37643f033060ac9 (commit)
discards 9e69063bd768a35e7b7d44053abc0e3b7d668f0e (commit)
discards f390b01aed2d965d1c70f96903c18c266dc3ec14 (commit)
discards 5e1731a05c745bfc287d5bd8c2fb51dd3fe8c48f (commit)
discards b7ff0cc864d1a186a1bc3e22418e91a64945e610 (commit)
via bd5ebd5c10e4dde24de21bdaa23da7e916301366 (commit)
via 595e1d4ea442e0dd7c262577ad3d54d78a98fa2d (commit)
via f6785e8c99c9056ff490342535061d242f5b1488 (commit)
via b66fdf09b6d7e0bd254af3228fd6aa8fb9826962 (commit)
via afe3454091bd87a4c2520f8ce57cbea5b1f4df84 (commit)
via b39cabdf574bc11f8cd4aac90941d0e05af14502 (commit)
via 7fcbe8c16b9820c23485b0125cf686c4c7fc32b9 (commit)
via 5615e854f4cf76918de18dda1203a921dfd51ed7 (commit)
via 2e976bcd6403e9f684a76dcfb042b46201e66136 (commit)
via d4089f4b072c06610c3301516de86e1ee401e125 (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 (6a531ba847b955a926ab376bd610afb16aab38c0)
\
N -- N -- N (bd5ebd5c10e4dde24de21bdaa23da7e916301366)
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/libosmocore/commit/?id=bd5ebd5c10e4dde24de21bdaa23d…
commit bd5ebd5c10e4dde24de21bdaa23da7e916301366
Author: Philipp Maier <pmaier(a)sysmocom.de>
Date: Wed Mar 29 17:53:43 2017 +0200
gsm0808: Add create functions for BSS_MAP_MSG_ASSIGMENT_RQST
gsm0808.h/c lacks functionality to generate BSS_MAP_MSG_ASSIGMENT_RQST messages.
These messages are required if the code is used in an MSC implementation.
This commit adds a gsm0808_create_assignment() function, that generates an
A/AoiP BSS_MAP_MSG_PAGING message.
Change-Id: I4d1d455a1e1cf95407e23ded7b7defbcf2dd6ff0
http://cgit.osmocom.org/libosmocore/commit/?id=595e1d4ea442e0dd7c262577ad3d…
commit 595e1d4ea442e0dd7c262577ad3d54d78a98fa2d
Author: Philipp Maier <pmaier(a)sysmocom.de>
Date: Wed Mar 29 17:37:55 2017 +0200
gsm0808: Add create functions for BSS_MAP_MSG_PAGING
gsm0808.h/c lacks functionality to generate BSS_MAP_MSG_PAGING messages. These
messages are required if the code is used in an MSC implementation.
This commit adds a gsm0808_create_paging() function, that generates an A/AoiP
BSS_MAP_MSG_PAGING message.
Change-Id: I9afecf0109305ca5153bf081bb29cd94071dd2b7
http://cgit.osmocom.org/libosmocore/commit/?id=f6785e8c99c9056ff49034253506…
commit f6785e8c99c9056ff490342535061d242f5b1488
Author: Philipp Maier <pmaier(a)sysmocom.de>
Date: Wed Mar 29 15:50:05 2017 +0200
gsm0808: Add create functions for CIPHER MODE COMMAND
gsm0808.h/c lacks functionality to generate CIPHER MODE COMMAND messages. These
messages are required if the code is used in an MSC implementation.
This commit adds a gsm0808_create_cipher() function, that generates an A/AoiP
CIPHER MODE COMMAND message.
Change-Id: I8eb1c357860c3e740b0f5d17e1c256bc87920958
http://cgit.osmocom.org/libosmocore/commit/?id=b66fdf09b6d7e0bd254af3228fd6…
commit b66fdf09b6d7e0bd254af3228fd6aa8fb9826962
Author: Philipp Maier <pmaier(a)sysmocom.de>
Date: Wed Mar 29 11:35:50 2017 +0200
gsm0808: Add utils for Cell Identifier List
The planned support for true A over IP requires the encoding of
the a Cell Identifier List element (see also BSS_MAP_MSG_PAGING).
This commt adds encoding/decoding functionality and tests for
the element mentioned above, however, it is not yet actively used.
Change-Id: I625245dd1dd396fc2bc189e8cd2c444a33042528
http://cgit.osmocom.org/libosmocore/commit/?id=afe3454091bd87a4c2520f8ce57c…
commit afe3454091bd87a4c2520f8ce57cbea5b1f4df84
Author: Philipp Maier <pmaier(a)sysmocom.de>
Date: Tue Mar 28 18:36:52 2017 +0200
gsm0808: Add utils for Encryption Information
The planned support for true A over IP requires the encoding of
the an Encryption Information element (see also BSS_MAP_MSG_CIPHER_MODE_CMD).
This commt adds encoding/decoding functionality and tests for
the element mentioned above, however, it is not yet actively used.
Change-Id: I8262050a9d9fd3f17462cfbb046c6e034dccc6fb
http://cgit.osmocom.org/libosmocore/commit/?id=b39cabdf574bc11f8cd4aac90941…
commit b39cabdf574bc11f8cd4aac90941d0e05af14502
Author: Philipp Maier <pmaier(a)sysmocom.de>
Date: Tue Mar 28 17:05:40 2017 +0200
gsm0808: Add utils for Channel Type
The planned support for true A over IP requires the encoding of
the a Channel Type element (see also ASSIGNMENT REQUEST).
This commt adds encoding/decoding functionality and tests for
the element mentioned above, however, it is not yet actively used.
Change-Id: Id0e2164d84b8cbcc6fe6a090fc7f40a1251421d7
http://cgit.osmocom.org/libosmocore/commit/?id=7fcbe8c16b9820c23485b0125cf6…
commit 7fcbe8c16b9820c23485b0125cf686c4c7fc32b9
Author: Philipp Maier <pmaier(a)sysmocom.de>
Date: Mon Mar 27 16:55:32 2017 +0200
gsm0808: Add AoIP specific elements to gsm0808_create_... functions
the classic A implementation in libosmocore lacks support for AoIP
message elements. This patch adds support for AoIP by adding a set
of new gsm0808_create_..., which support the missing AoIP message
elements
Change-Id: I77f866abec1822d19871052f3c647ad782785b34
http://cgit.osmocom.org/libosmocore/commit/?id=5615e854f4cf76918de18dda1203…
commit 5615e854f4cf76918de18dda1203a921dfd51ed7
Author: Philipp Maier <pmaier(a)sysmocom.de>
Date: Fri Mar 24 18:03:17 2017 +0100
gsm0808: Add utils for Speech Codec List and Speech Codec
The planned support for true A over IP requires the encoding and
decoding of a so called "Speech Codec Element" element.
This commt adds parsing functionality and tests for the element
mentioned above, however, it is not yet actively used.
Change-Id: I0e1e2edf47adaa45b22d4b0bcae3640dba7ca200
http://cgit.osmocom.org/libosmocore/commit/?id=2e976bcd6403e9f684a76dcfb042…
commit 2e976bcd6403e9f684a76dcfb042b46201e66136
Author: Philipp Maier <pmaier(a)sysmocom.de>
Date: Fri Mar 24 17:59:26 2017 +0100
gsm0808: Add utils for AoIP Transport Layer Address
The planned support for true A over IP requires the encoding and
decoding of a so called "AoIP Transport Layer Address" element.
This commt adds parsing functionality and tests for the element
mentioned above, however, it is not yet actively used.
Change-Id: I57933b0a06a3f54ec2a41e6ecb6ced9fbbc89332
-----------------------------------------------------------------------
Summary of changes:
contrib/jenkins.sh | 12 +++++++
include/osmocom/gsm/gsm0808_utils.h | 4 +--
src/gsm/gsm0808_utils.c | 68 +++++++++++++++++--------------------
tests/gsm0808/gsm0808_test.c | 56 +++++++++++++++---------------
4 files changed, 72 insertions(+), 68 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 "Software-defined analyzer for APCO P25".
The branch, max has been updated
via bcef5dfc295a76aa219709c3492285b81652a2dd (commit)
via 4ece3269e3f355c6726da54f25e22040199be69d (commit)
from 596fe4a733e5ab294ff58b6ba694e9b8d6988e32 (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/op25/commit/?id=bcef5dfc295a76aa219709c3492285b8165…
commit bcef5dfc295a76aa219709c3492285b81652a2dd
Author: Max <ikj1234i(a)yahoo.com>
Date: Sun Apr 2 09:32:21 2017 -0400
update help text
http://cgit.osmocom.org/op25/commit/?id=4ece3269e3f355c6726da54f25e22040199…
commit 4ece3269e3f355c6726da54f25e22040199be69d
Author: Max <ikj1234i(a)yahoo.com>
Date: Sun Apr 2 09:31:40 2017 -0400
add spectrum zoom
-----------------------------------------------------------------------
Summary of changes:
op25/gr-op25_repeater/apps/scope.py | 11 ++++++++---
op25/gr-op25_repeater/apps/tx/dv_tx.py | 2 +-
2 files changed, 9 insertions(+), 4 deletions(-)
hooks/post-receive
--
Software-defined analyzer for APCO P25
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 "GNU Radio block for interfacing with various radio hardware".
The branch, soapy_support has been updated
via c8af6b1735950a5feb268b44bc34b1ccd3c07392 (commit)
via e9dde9afd754c6e3bcf1a1444c04064051f04ecd (commit)
via 71846180f548bac7412ce0fede505672c343b2d5 (commit)
via 43df1c98c4110a4d3b66ce867da7c21dbf1e6d58 (commit)
via 20a5fd1a68f704b000244d35316efdd40f3e5619 (commit)
via 6a0cac6609c6d16ae0a4ecb3da463fb42e3e1550 (commit)
via c6ed80aea7fcbd45035f20c6389b2c9892bd6abe (commit)
via 3823c8efce1fd3f9b51debb5569c9419dbb38a89 (commit)
via 6ea6c19028f8a93c3a942856def5afcf894cba9d (commit)
via 0dc8154f087a0b2b9b2e53351592d16e3c278786 (commit)
from 2a2236cc9e97581e59cfc8018bd03d90659e6acc (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/gr-osmosdr/commit/?id=c8af6b1735950a5feb268b44bc34b…
commit c8af6b1735950a5feb268b44bc34b1ccd3c07392
Author: Josh Blum <josh(a)joshknows.com>
Date: Sat Apr 1 19:45:51 2017 -0700
soapy - check for freq corr before invoking
set_freq_corr() is often a NOP for devices.
checking avoids crashes for some applications (ex GQRX)
-----------------------------------------------------------------------
Summary of changes:
CMakeLists.txt | 1 +
lib/airspy/airspy_fir_kernels.h | 101 ++++++++++++++++++++++++++++++++++++++++
lib/airspy/airspy_source_c.cc | 72 +++++++++++++++++++++++++---
lib/bladerf/CMakeLists.txt | 3 +-
lib/bladerf/bladerf_sink_c.cc | 7 ++-
lib/bladerf/bladerf_source_c.cc | 19 ++------
lib/hackrf/hackrf_sink_c.cc | 27 +++++++----
lib/hackrf/hackrf_source_c.cc | 27 +++++++----
lib/rfspace/rfspace_source_c.cc | 37 +++++++++++++++
lib/rfspace/rfspace_source_c.h | 3 ++
lib/rtl/rtl_source_c.cc | 2 +-
lib/rtl_tcp/rtl_tcp_source_c.cc | 2 +-
lib/soapy/soapy_sink_c.cc | 14 +++++-
lib/soapy/soapy_source_c.cc | 14 +++++-
14 files changed, 276 insertions(+), 53 deletions(-)
create mode 100644 lib/airspy/airspy_fir_kernels.h
hooks/post-receive
--
GNU Radio block for interfacing with various radio hardware
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 "Software-defined analyzer for APCO P25".
The branch, max has been updated
via 596fe4a733e5ab294ff58b6ba694e9b8d6988e32 (commit)
from c348afa99e4120a4ccbaea3f734be986964e64dd (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/op25/commit/?id=596fe4a733e5ab294ff58b6ba694e9b8d69…
commit 596fe4a733e5ab294ff58b6ba694e9b8d6988e32
Author: Max <ikj1234i(a)yahoo.com>
Date: Sat Apr 1 17:28:17 2017 -0400
doc update for osmosdr device support
-----------------------------------------------------------------------
Summary of changes:
op25/gr-op25_repeater/apps/tx/doc.html | 15 +++++++++++++++
1 file changed, 15 insertions(+)
hooks/post-receive
--
Software-defined analyzer for APCO P25
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 "Software-defined analyzer for APCO P25".
The branch, max has been updated
via c348afa99e4120a4ccbaea3f734be986964e64dd (commit)
via e383a7a719530b94fa5fef579300eb04c1945dab (commit)
via 11cd46b8e7d59d58931a3ed24c9f0617229815f8 (commit)
from ff3a65028e4b4320347632660911f05fd80cd78c (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/op25/commit/?id=c348afa99e4120a4ccbaea3f734be986964…
commit c348afa99e4120a4ccbaea3f734be986964e64dd
Author: Max <ikj1234i(a)yahoo.com>
Date: Sat Apr 1 17:21:39 2017 -0400
compile error fix
http://cgit.osmocom.org/op25/commit/?id=e383a7a719530b94fa5fef579300eb04c19…
commit e383a7a719530b94fa5fef579300eb04c1945dab
Author: Max <ikj1234i(a)yahoo.com>
Date: Sat Apr 1 17:21:02 2017 -0400
modulator test input files
http://cgit.osmocom.org/op25/commit/?id=11cd46b8e7d59d58931a3ed24c9f0617229…
commit 11cd46b8e7d59d58931a3ed24c9f0617229815f8
Author: Max <ikj1234i(a)yahoo.com>
Date: Sat Apr 1 17:20:39 2017 -0400
add osmosdr device support
-----------------------------------------------------------------------
Summary of changes:
op25/gr-op25_repeater/apps/tx/dv_tx.py | 65 +++++++++++++++++----
op25/gr-op25_repeater/apps/tx/test-data-1200-2.dat | Bin 0 -> 1024 bytes
op25/gr-op25_repeater/apps/tx/test-data-1200-4.dat | 1 +
op25/gr-op25_repeater/lib/ysf_tx_sb_impl.cc | 2 +-
4 files changed, 57 insertions(+), 11 deletions(-)
create mode 100644 op25/gr-op25_repeater/apps/tx/test-data-1200-2.dat
create mode 100644 op25/gr-op25_repeater/apps/tx/test-data-1200-4.dat
hooks/post-receive
--
Software-defined analyzer for APCO P25
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, laforge/sigtran-squashed has been updated
discards 83e2a03f4baeffd914e42cd6f13d1180123688e2 (commit)
via e996d42e2672eba966382898da1dd4fd07b12153 (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 (83e2a03f4baeffd914e42cd6f13d1180123688e2)
\
N -- N -- N (e996d42e2672eba966382898da1dd4fd07b12153)
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/libosmo-sccp/commit/?id=e996d42e2672eba966382898da1…
commit e996d42e2672eba966382898da1dd4fd07b12153
Author: Harald Welte <laforge(a)gnumonks.org>
Date: Sun Feb 12 19:47:08 2017 +0100
WIP: New SIGTRAN world
Change-Id: I118e4eeffe92bbbac53a34c24545d4306cdd2c23
-----------------------------------------------------------------------
Summary of changes:
examples/sccp_test_server.c | 20 +-
include/osmocom/sigtran/osmo_ss7.h | 6 +
include/osmocom/sigtran/protocol/m3ua.h | 32 ++-
include/osmocom/sigtran/protocol/sua.h | 36 ++-
src/m3ua.c | 376 ++++++++++++++++++++++++--------
src/osmo_ss7.c | 42 ++--
src/sccp_scrc.c | 64 ++----
src/sccp_user.c | 4 +
src/sua.c | 223 ++++++++++++++-----
src/xua_as_fsm.c | 68 +++---
src/xua_asp_fsm.c | 28 ++-
src/xua_internal.h | 21 ++
12 files changed, 649 insertions(+), 271 deletions(-)
hooks/post-receive
--
SCCP Library