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