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 0ddd4b6c25dcb1cf85809b190afd6ac4d95890ea (commit)
via 24839068f5c7e044e82afaa3b88d08a07e123ee7 (commit)
from b631bd21d21b10f8e0344dc47af34ef09306d0fb (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=0ddd4b6c25dcb1cf85809b190afd6ac…
commit 0ddd4b6c25dcb1cf85809b190afd6ac4d95890ea
Author: Andreas Eversberg <jolly(a)eversberg.eu>
Date: Mon Jul 29 09:37:07 2013 +0200
Add header file of PH-/MPH-/TCH-SAP interface to common part of osmo-bts
Instead of handling primitives directly at layer 1 specific code,
osmo-bts handles primitives at common code.
When all primitive are moved, the l1sap interface will:
- receive PH-DATA indications and forward them to layer 2.
- check for RF link loss and notify BSC.
- receive TCH indications and forward them via RTP.
- receive PH-RTS indications and send PH-DATA requests with content
according to its logical channel.
- receive TCH-RTS indications and send TCH requests with content
received via RTP or loopback from TCH indications.
- send MPH-INFO requests to activate, deactivate and modify logical
channels and handle their confirms.
- receive MPH-INFO indications with measurements from tranceiver.
- forward received and transmitted PH-DATA to GSMTAP.
http://cgit.osmocom.org/osmo-bts/commit/?id=24839068f5c7e044e82afaa3b88d08a…
commit 24839068f5c7e044e82afaa3b88d08a07e123ee7
Author: Andreas Eversberg <jolly(a)eversberg.eu>
Date: Sun Jul 28 11:48:40 2013 +0200
sysmo-bts: Use correct boundaries of L1 msg when forwarding to L1 proxy
In case of a headroom in a message, the 'head' pointer will not point to
the actual data.
-----------------------------------------------------------------------
Summary of changes:
include/osmo-bts/Makefile.am | 2 +-
include/osmo-bts/l1sap.h | 71 ++++++++++++++++++++++++++++++++++++++
src/osmo-bts-sysmo/l1_transp_fwd.c | 2 +-
3 files changed, 73 insertions(+), 2 deletions(-)
create mode 100644 include/osmo-bts/l1sap.h
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 "UNNAMED PROJECT".
The branch, jerlbeck/wip has been created
at 068a5b3cf79528f2d05f9a6bd7216aefba2ae95c (commit)
- Log -----------------------------------------------------------------
http://cgit.osmocom.org/osmo-pcu/commit/?id=068a5b3cf79528f2d05f9a6bd7216ae…
commit 068a5b3cf79528f2d05f9a6bd7216aefba2ae95c
Author: Jacob Erlbeck <jerlbeck(a)sysmocom.de>
Date: Tue Mar 24 15:03:47 2015 +0100
bssgp: log lifetime WIP
http://cgit.osmocom.org/osmo-pcu/commit/?id=35bf6d836a82ea1976532ce39e37862…
commit 35bf6d836a82ea1976532ce39e37862e60c45b45
Author: Jacob Erlbeck <jerlbeck(a)sysmocom.de>
Date: Tue Mar 10 11:03:49 2015 +0100
l1: Add log messages and RACH gsmtap (TODO)
TODO:
- commit message
- split
http://cgit.osmocom.org/osmo-pcu/commit/?id=b4c16cabaebe0fad6266aec222007d0…
commit b4c16cabaebe0fad6266aec222007d0a52ddd1fe
Author: Jacob Erlbeck <jerlbeck(a)sysmocom.de>
Date: Fri Mar 20 12:02:42 2015 +0100
tbf: Use DL discard hysteresis (TODO)
Currently single LLC blocks are discarded when the expire. If an IP
packet has been fragmented and is therefore distributed over several
LLC frames, the kept fragments are transmitted and then discarded by
the MS. This can cause massive IP packet loss when there are many
fragmented packets (e.g. when trying 'ping -s1800').
Also TCP recovery algorithms (default, SACK) seem to work better,
if a single block of a few packets is missing instead of many single
packets scattered over the TCP stream.
On the other hand, discarding too many packets might disturb the
congestion handling of TCP. Dropping plain TCP ACKs might also hinder
flow control and congestion avoidance.
This commit adds a hysteresis algorithm to the LLC discard loop. If
an LLC message's age reaches the high water mark, further message's
with an age above the low water mark are discarded, too. This is
aborted, if a GMM, a non-UI, or a small message is detected. In
these cases, that message is kept.
TODO:
- make low and high expiry watermarks configurable
- make the keep threshold configurable
http://cgit.osmocom.org/osmo-pcu/commit/?id=502bd1feea9441938498b9240522043…
commit 502bd1feea9441938498b92405220437dc3a91bf
Author: Jacob Erlbeck <jerlbeck(a)sysmocom.de>
Date: Fri Mar 20 14:26:05 2015 +0100
tbf: Poll MS on idle DL TBFs
If an MS wants to open a new UL TBF, it can either use (P)RACH or
request one in a Ack/Nack message for a DL TBF (PACCH). When a TBF
becomes idle (LCC queue is empty but the TBF is kept open), there
aren't any Ack/Nack requests that can be used by the MS to ask for an
UL TBF, therefore it has to use the RACH. This leads to many RACH
requests even for a single HTTP transaction, so it takes some time to
retrieve even a simple web page.
This commit modifies the scheduler to regularly send Ack/Nack
requests on idle DL TBFs. It does so by extending the priority based
scheduling algorithm to have 5 priority levels (highest priority
first):
- Control block is pending
- High age (100%) threshold reached (-> request Ack/Nack)
- Data is waiting or there are pending Nacks
- Low age (200ms) threshold reached (-> request Ack/Nack)
- Pending Nacks that have been resent already
- None of the above (-> send DL dummy control block)
The 'age' refers to the time since since the last control block has
been sent on the TBF. This high age threshold is set to
dl-tbf-idle-time or to 50% of T3190 (whichever is smaller), aiming
for at least a poll (and TBF shutdown) after the TBF has expired and
to safely prevent expiry of T3190. So if dl-tbf-idle-time > 200ms,
there will be a poll every 200ms and a final poll after
dl-tbf-idle-time. On high load, the interval between polls can get
higher, but the 'high age' poll should be in place.
This commit implements the scheduling with respect to GSM 44.060,
9.3.1a ("Delayed release of downlink TBF").
Ticket: #556
Sponsored-by: On-Waves ehf
http://cgit.osmocom.org/osmo-pcu/commit/?id=e25b5b91f60f20f61096bc6199a05b5…
commit e25b5b91f60f20f61096bc6199a05b58ee6c6328
Author: Jacob Erlbeck <jerlbeck(a)sysmocom.de>
Date: Thu Mar 19 14:21:33 2015 +0100
tbf: Only create dummy frames if necessary
Currently a lot of LLC dummy commands will be generated while waiting
for an ACK for the DL TBF, even if there are blocks that could be
resent instead.
This patch modifies create_dl_acked_block to only call
create_new_bsn() if there is unsent LLC data or m_window is empty.
If the TBF is in state FLOW, no unsent LLC data is left, but there
are blocks left in m_window, those are resent instead.
Sponsored-by: On-Waves ehf
http://cgit.osmocom.org/osmo-pcu/commit/?id=2cbe80b53e54b1ca832b2b30722ffac…
commit 2cbe80b53e54b1ca832b2b30722ffacfa92f6117
Author: Jacob Erlbeck <jerlbeck(a)sysmocom.de>
Date: Wed Mar 25 10:48:52 2015 +0100
tbf/test: Add test for delayed release
This tests checks the implementation of the delayed release of an
downlink TBF.
Ticket: #556
Sponsored-by: On-Waves ehf
http://cgit.osmocom.org/osmo-pcu/commit/?id=3bed5d11d210b599f56a1df3a5339b0…
commit 3bed5d11d210b599f56a1df3a5339b0a74cedcff
Author: Jacob Erlbeck <jerlbeck(a)sysmocom.de>
Date: Thu Mar 19 11:22:38 2015 +0100
tbf: Implement delayed release of a downlink TBF
Currently a DL TBF is immediately closed, when the LLC queue is
drained. This will lead to a new DL assignment if data is received
afterwards. In addition, it is not possible to keep the PACCH open
to poll the MS for UL establishment requests there.
GSM 44.060, 9.3.1a suggests to delay the release of an inactive TBF
for some time (max 5s).
This commit mainly changes create_new_bsn() to send LLC dummy
commands as filler if no LLC data is available until keep_open()
returns false. The keep_open() functions returns true unless a
configurable time has passed after the LLC data store drained. By
default, that time is not set which causes keep_open() to always
return false, so that delayed release is effectively disabled.
The following VTY commands are added:
- dl-tbf-idle-time <1-5000> to set the delay in ms
- no dl-tbf-idle-time to disable delayed release
Ticket: #556
Sponsored-by: On-Waves ehf
http://cgit.osmocom.org/osmo-pcu/commit/?id=cbb1e70554a08c7d6d1307d68883bc3…
commit cbb1e70554a08c7d6d1307d68883bc38a92fe4f3
Author: Jacob Erlbeck <jerlbeck(a)sysmocom.de>
Date: Wed Mar 25 12:21:55 2015 +0100
tbf: Insert LLC dummy command if no frame is available
If a BSN is going to be created but there is no frame stored in
m_llc, an empty LLC message would be created. This shouldn't happen
currently, but this will be a common case, when delayed TBF release
is implemented.
This commit changes create_new_bsn() to create an LLC dummy
command in that case and to put it into the frame buffer.
Sponsored-by: On-Waves ehf
http://cgit.osmocom.org/osmo-pcu/commit/?id=c4952091223e10d9e99fa035e694265…
commit c4952091223e10d9e99fa035e6942656d233aa16
Author: Jacob Erlbeck <jerlbeck(a)sysmocom.de>
Date: Tue Mar 24 11:04:19 2015 +0100
tbf: Use put_frame in append_data if the TBF has no data
Currently if append_data() is used when there is no LLC data in the DL TBF,
it will either call reuse_tbf() which in turn will call put_frame(),
or it will append the LLC message to the queue, even if the queue and
the frame buffer are empty. This only happens with the test case so
far, but this would change when idle DL TBFs are kept open for some
time. It results in empty LLC message being sent to the MS (see log
below).
This commit changes append_data to check for this case and to
eventually use put_frame() instead of appending the LLC data to the
queue.
Addresses:
TBF(TFI=0 TLLI=0x00000000 DIR=DL STATE=FLOW) downlink (V(A)==0 ..
V(S)==0)
- Sending new block at BSN 0
-- Chunk with length 0 is less than remaining space (20): add length
header to to delimit LLC frame
Complete DL frame for TBF(TFI=0 TLLI=0x00000000 DIR=DL STATE=FLOW)len=0
- Dequeue next LLC for TBF(TFI=0 TLLI=0x00000000 DIR=DL STATE=FLOW)
(len=200)
Sponsored-by: On-Waves ehf
http://cgit.osmocom.org/osmo-pcu/commit/?id=005ee7f8626d4733e8fa01f35891542…
commit 005ee7f8626d4733e8fa01f3589154287ed163ed
Author: Jacob Erlbeck <jerlbeck(a)sysmocom.de>
Date: Fri Mar 20 14:53:54 2015 +0100
tbf: Add frames_since_last_poll method
This functions calculates the number of frames that have passed since
the last DL poll (RRBP flag set) has been sent. It returns a value
less than zero (fn_now - fn_sched) if the block has been scheduled but
not yet sent.
If the function is called before the first data block has been sent
it will return -1.
If the function is called before the first DL poll is sent, it
returns the number of frames since the first data block has been
sent.
Sponsored-by: On-Waves ehf
http://cgit.osmocom.org/osmo-pcu/commit/?id=2493c660e9cbede4ac43f2584c0a8e6…
commit 2493c660e9cbede4ac43f2584c0a8e6d8625e1dd
Author: Jacob Erlbeck <jerlbeck(a)sysmocom.de>
Date: Wed Mar 25 10:05:34 2015 +0100
tbf/test: Fix fn/block_nr in test_tbf_final_ack
Currently fn and block_nr are not incremented correctly. In addition,
the comments around the sending of blocks are not accurate either.
This commit introduces the send_rlc_block helper function which takes
care of the increments, updates the comments to reflect what is
really happening, and adds assertion to verify at least some aspects
of what is now stated in the comments.
Sponsored-by: On-Waves ehf
http://cgit.osmocom.org/osmo-pcu/commit/?id=a3e4509ff9b6ce2de574eaec7d085fc…
commit a3e4509ff9b6ce2de574eaec7d085fc914cfeaab
Author: Jacob Erlbeck <jerlbeck(a)sysmocom.de>
Date: Wed Mar 25 09:11:24 2015 +0100
tbf/test: Put BTS setup and DL TBF creation into helper functions
Put the generic parts of test_tbf_final_ack into helper functions to
reduce the size of the test and to avoid too much code duplication
when creating new tests.
Sponsored-by: On-Waves ehf
http://cgit.osmocom.org/osmo-pcu/commit/?id=eceb910fef8b6ebfba5aa9b13ffbccf…
commit eceb910fef8b6ebfba5aa9b13ffbccfe322d9706
Author: Jacob Erlbeck <jerlbeck(a)sysmocom.de>
Date: Fri Mar 20 14:41:50 2015 +0100
tbf: Add helper functions for DL TBFs
Some properties of a DL TBF are explicitly calculated within modules
using DL TBFs.
This commit introduces the methods need_control_ts(), have_data(),
is_control_ts() to hide internals of the DL TBF implementation.
Sponsored-by: On-Waves ehf
http://cgit.osmocom.org/osmo-pcu/commit/?id=95340242ed1089e30b9a3045ea55bc9…
commit 95340242ed1089e30b9a3045ea55bc9068432e0b
Author: Jacob Erlbeck <jerlbeck(a)sysmocom.de>
Date: Thu Mar 19 13:22:07 2015 +0100
tbf: Refactor create_dl_acked_block
Turn the big nested if statement into a sequence of smaller ones. The
call to create_new_bsn is moved upwards.
Sponsored-by: On-Waves ehf
http://cgit.osmocom.org/osmo-pcu/commit/?id=612e93e36031ab2d50dd66d148f289b…
commit 612e93e36031ab2d50dd66d148f289b2e3580850
Author: Jacob Erlbeck <jerlbeck(a)sysmocom.de>
Date: Fri Mar 20 13:57:27 2015 +0100
llc: Add put_dummy_frame to create an LLC dummy command
The LLC dummy command is needed for RLC block stuffing, e.g. when a
TBF should be kept open if no LLC data is available. The RLC block
headers do not support stuffing, only the last block of a TBF can be
used partially. LLC dummy commands are discarded by the receiver
immediately, because the have an invalid FCS checksum.
This commit adds the function put_dummy_frame, which puts a LLC dummy
command into the frame buffer. The requested length is given as an
argument, but the real length might be adjusted according to the
specification (see GSM 44.064, 6.4.2.2).
Sponsored-by: On-Waves ehf
-----------------------------------------------------------------------
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 "Cellmanager NG, intended to interface with BSplus".
The branch, zecke/m3ua has been updated
discards 55cd4b017dfdca79192473b82a643f540ae86f5e (commit)
discards 8e855c30a2c2b74831d3d315b1d25456ad7c5017 (commit)
discards d558219b69c79b03ff88b8b64edb59135ac0b464 (commit)
via 316168249f25e46d802edcfed2461845000a066d (commit)
via ebdbc1140388255b27479f752d0813d986ca1c03 (commit)
via d1df399a972ce2b96b0d3ef9e90d17a7c16a93b5 (commit)
via 6a20bae1f9adee67829ade0f20d9626deb98eee6 (commit)
via d2f21e079613a7c0ed4f245fb14a6b3d20eefdfc (commit)
via 679a8d0b75fe2db44cacdcd56b11aec3803ca521 (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 (55cd4b017dfdca79192473b82a643f540ae86f5e)
\
N -- N -- N (316168249f25e46d802edcfed2461845000a066d)
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/cellmgr-ng/commit/?id=316168249f25e46d802edcfed2461…
commit 316168249f25e46d802edcfed2461845000a066d
Author: Holger Hans Peter Freyther <holger(a)moiji-mobile.com>
Date: Tue Mar 24 19:24:22 2015 +0100
all: Use the libosmo-sccp version of mtp_level3.h
http://cgit.osmocom.org/cellmgr-ng/commit/?id=ebdbc1140388255b27479f752d081…
commit ebdbc1140388255b27479f752d0813d986ca1c03
Author: Holger Hans Peter Freyther <holger(a)moiji-mobile.com>
Date: Tue Mar 24 19:21:01 2015 +0100
m3ua: Use the MTP_READ_DPC/MTP_READ_OPC for using the right PC
Make the code work for both ISUP and SCCP and let the address
handling still be part of the linkset/mtp3 code.
http://cgit.osmocom.org/cellmgr-ng/commit/?id=d1df399a972ce2b96b0d3ef9e90d1…
commit d1df399a972ce2b96b0d3ef9e90d17a7c16a93b5
Author: Holger Hans Peter Freyther <holger(a)moiji-mobile.com>
Date: Tue Mar 24 18:51:02 2015 +0100
m3ua: Implement link bring-up and sending/receiving of data
the opc/dpc for ISUP is currently wrong. The send/recv path
for actual SCCP data is not tested.
http://cgit.osmocom.org/cellmgr-ng/commit/?id=6a20bae1f9adee67829ade0f20d96…
commit 6a20bae1f9adee67829ade0f20d9626deb98eee6
Author: Holger Hans Peter Freyther <holger(a)moiji-mobile.com>
Date: Mon Mar 23 16:59:18 2015 +0100
m3ua: Implement connect and re-connect handling
http://cgit.osmocom.org/cellmgr-ng/commit/?id=d2f21e079613a7c0ed4f245fb14a6…
commit d2f21e079613a7c0ed4f245fb14a6b3d20eefdfc
Author: Holger Hans Peter Freyther <holger(a)moiji-mobile.com>
Date: Mon Mar 23 16:19:37 2015 +0100
m3ua: Begin to create a m3ua client connection
Implement a basic M3UA state machine on a SCTP connection.
http://cgit.osmocom.org/cellmgr-ng/commit/?id=679a8d0b75fe2db44cacdcd56b11a…
commit 679a8d0b75fe2db44cacdcd56b11aec3803ca521
Author: Holger Hans Peter Freyther <holger(a)moiji-mobile.com>
Date: Tue Mar 24 18:36:24 2015 +0100
mtp: Allow to skip SLTM on links (e.g. m3ua)
For M3UA links we can't send SLTM messages but we can
assume that the link is fine. Add a flag that a link
can set in case SLTM should be skipped. The linkset will
then directly wait for routable DPCs and bring the
SCCP part up.
-----------------------------------------------------------------------
Summary of changes:
include/Makefile.am | 2 +-
include/mtp_data.h | 6 +
include/mtp_level3.h | 180 ------------------------------
include/sctp_m3ua.h | 3 +-
src/isup.c | 2 +-
src/links.c | 2 +-
src/main.c | 2 +-
src/main_stp.c | 2 +-
src/mtp_layer3.c | 10 +-
src/mtp_link.c | 11 +-
src/sccp_state.c | 2 +-
src/sctp_m3ua_client.c | 269 ++++++++++++++++++++++++++++++++++++++++++---
tests/mtp/Makefile.am | 2 +-
tests/mtp/mtp_parse_test.c | 10 +-
14 files changed, 286 insertions(+), 217 deletions(-)
delete mode 100644 include/mtp_level3.h
hooks/post-receive
--
Cellmanager NG, intended to interface with BSplus
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, master has been updated
via e0cd6c4d3b7388ec20f8cec9d997429941d4d1b0 (commit)
via e48db7f497a378e62b98d26157b7e5b2f3185d3f (commit)
via 6bdea1491597b2cb3ed82e9c1892a727b62daf34 (commit)
via 837beea52c8d10aa9ca31ca36779755c78e84242 (commit)
via 80565cd8c339a2a72244d599c39b1a1aaac923a6 (commit)
via 0a8308764c6e1a309842629b23e6ed17cfc755c7 (commit)
via 953d4eda472c7b28b1f5d24dbd71247a80c0f08b (commit)
from 7046633c02d15939d4953f1860f38be28f42667e (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-sccp/commit/?id=e0cd6c4d3b7388ec20f8cec9d99…
commit e0cd6c4d3b7388ec20f8cec9d997429941d4d1b0
Author: Holger Hans Peter Freyther <holger(a)moiji-mobile.com>
Date: Tue Mar 24 19:19:46 2015 +0100
mtp: Correct the pointcode mask
Taken from libosmocore
http://cgit.osmocom.org/libosmo-sccp/commit/?id=e48db7f497a378e62b98d26157b…
commit e48db7f497a378e62b98d26157b7e5b2f3185d3f
Author: Holger Hans Peter Freyther <holger(a)moiji-mobile.com>
Date: Tue Mar 24 19:13:05 2015 +0100
mtp: Add missing defines from cellmgr-ng
http://cgit.osmocom.org/libosmo-sccp/commit/?id=6bdea1491597b2cb3ed82e9c189…
commit 6bdea1491597b2cb3ed82e9c1892a727b62daf34
Author: Holger Hans Peter Freyther <holger(a)moiji-mobile.com>
Date: Tue Mar 24 19:12:54 2015 +0100
mtp: Add implementation from cellmgr
http://cgit.osmocom.org/libosmo-sccp/commit/?id=837beea52c8d10aa9ca31ca3677…
commit 837beea52c8d10aa9ca31ca36779755c78e84242
Author: Holger Hans Peter Freyther <holger(a)moiji-mobile.com>
Date: Tue Mar 24 19:09:13 2015 +0100
mtp: Convert to pragma once
This already fixes a clash of filenames in cellmgr-ng
http://cgit.osmocom.org/libosmo-sccp/commit/?id=80565cd8c339a2a72244d599c39…
commit 80565cd8c339a2a72244d599c39b1a1aaac923a6
Author: Holger Hans Peter Freyther <holger(a)moiji-mobile.com>
Date: Tue Mar 24 19:08:56 2015 +0100
mtp: Error about unknown endian as well
http://cgit.osmocom.org/libosmo-sccp/commit/?id=0a8308764c6e1a309842629b23e…
commit 0a8308764c6e1a309842629b23e6ed17cfc755c7
Author: Holger Hans Peter Freyther <holger(a)moiji-mobile.com>
Date: Tue Mar 24 19:01:40 2015 +0100
mtp: Implement reading the OPC/DPC for little endian
http://cgit.osmocom.org/libosmo-sccp/commit/?id=953d4eda472c7b28b1f5d24dbd7…
commit 953d4eda472c7b28b1f5d24dbd71247a80c0f08b
Author: Holger Hans Peter Freyther <holger(a)moiji-mobile.com>
Date: Tue Mar 24 18:34:57 2015 +0100
m3ua: Add the definition of the protocol data header
-----------------------------------------------------------------------
Summary of changes:
include/mtp/mtp_level3.h | 24 ++++++++++++++++++++----
include/sigtran/m3ua_types.h | 15 +++++++++++++++
tests/mtp/mtp_parse_test.c | 10 ++++++++++
3 files changed, 45 insertions(+), 4 deletions(-)
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 "Cellmanager NG, intended to interface with BSplus".
The branch, zecke/m3ua has been updated
discards 051eeca0821d7e0ee9626189a01928afdc8cc45b (commit)
via 55cd4b017dfdca79192473b82a643f540ae86f5e (commit)
via 8e855c30a2c2b74831d3d315b1d25456ad7c5017 (commit)
via d558219b69c79b03ff88b8b64edb59135ac0b464 (commit)
via bc4b0bbe123c673880be370162c25aabebbae15a (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 (051eeca0821d7e0ee9626189a01928afdc8cc45b)
\
N -- N -- N (55cd4b017dfdca79192473b82a643f540ae86f5e)
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/cellmgr-ng/commit/?id=55cd4b017dfdca79192473b82a643…
commit 55cd4b017dfdca79192473b82a643f540ae86f5e
Author: Holger Hans Peter Freyther <holger(a)moiji-mobile.com>
Date: Tue Mar 24 09:54:18 2015 +0100
WIP: m3ua.. begin with the state machine..
http://cgit.osmocom.org/cellmgr-ng/commit/?id=8e855c30a2c2b74831d3d315b1d25…
commit 8e855c30a2c2b74831d3d315b1d25456ad7c5017
Author: Holger Hans Peter Freyther <holger(a)moiji-mobile.com>
Date: Mon Mar 23 16:59:18 2015 +0100
m3ua: Implement connect and re-connect handling
http://cgit.osmocom.org/cellmgr-ng/commit/?id=d558219b69c79b03ff88b8b64edb5…
commit d558219b69c79b03ff88b8b64edb59135ac0b464
Author: Holger Hans Peter Freyther <holger(a)moiji-mobile.com>
Date: Mon Mar 23 16:19:37 2015 +0100
m3ua: Begin to create a m3ua client connection
Implement a basic M3UA state machine on a SCTP connection.
http://cgit.osmocom.org/cellmgr-ng/commit/?id=bc4b0bbe123c673880be370162c25…
commit bc4b0bbe123c673880be370162c25aabebbae15a
Author: Holger Hans Peter Freyther <holger(a)moiji-mobile.com>
Date: Mon Mar 23 17:02:12 2015 +0100
mtp: Clean-up and remove the unused start routine
-----------------------------------------------------------------------
Summary of changes:
include/mtp_data.h | 1 -
include/sctp_m3ua.h | 9 ++
src/link_udp.c | 7 --
src/mtp_link.c | 1 -
src/sctp_m2ua.c | 9 --
src/sctp_m3ua_client.c | 272 +++++++++++++++++++++++++++++++++++++++++++++++--
6 files changed, 272 insertions(+), 27 deletions(-)
hooks/post-receive
--
Cellmanager NG, intended to interface with BSplus
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 "Cellmanager NG, intended to interface with BSplus".
The branch, zecke/m3ua has been created
at 051eeca0821d7e0ee9626189a01928afdc8cc45b (commit)
- Log -----------------------------------------------------------------
http://cgit.osmocom.org/cellmgr-ng/commit/?id=051eeca0821d7e0ee9626189a0192…
commit 051eeca0821d7e0ee9626189a01928afdc8cc45b
Author: Holger Hans Peter Freyther <holger(a)moiji-mobile.com>
Date: Mon Mar 23 16:19:37 2015 +0100
m3ua: Begin to create a m3ua client connection
Implement a basic M3UA state machine on a SCTP connection.
-----------------------------------------------------------------------
hooks/post-receive
--
Cellmanager NG, intended to interface with BSplus
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 "Cellmanager NG, intended to interface with BSplus".
The branch, master has been updated
via 4fd82de1ba42b7f148af6a95edd6d0b66c739463 (commit)
from 1cedd4a599ee0a324bddf16ebd8a0ac8add4ca92 (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/cellmgr-ng/commit/?id=4fd82de1ba42b7f148af6a95edd6d…
commit 4fd82de1ba42b7f148af6a95edd6d0b66c739463
Author: Holger Hans Peter Freyther <holger(a)moiji-mobile.com>
Date: Mon Mar 23 12:39:18 2015 +0100
Port from libm2ua to libxua
-----------------------------------------------------------------------
Summary of changes:
include/sctp_m2ua.h | 2 +-
src/Makefile.am | 2 +-
src/main_stp.c | 17 +++----
src/sctp_m2ua.c | 124 ++++++++++++++++++++++++++--------------------------
4 files changed, 74 insertions(+), 71 deletions(-)
hooks/post-receive
--
Cellmanager NG, intended to interface with BSplus
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, master has been updated
via 7046633c02d15939d4953f1860f38be28f42667e (commit)
via 4d244d3c31486f4e353dc997c92fa46129d82406 (commit)
from a93c6f3113f71d3128ae516586319e22215970bd (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-sccp/commit/?id=7046633c02d15939d4953f1860f…
commit 7046633c02d15939d4953f1860f38be28f42667e
Author: Holger Hans Peter Freyther <holger(a)moiji-mobile.com>
Date: Mon Mar 23 12:19:00 2015 +0100
xua: Generalize the m2ua_msg and call it xua_msg
Generalize, this requires various API modifications
but that is the most sane path forward.
http://cgit.osmocom.org/libosmo-sccp/commit/?id=4d244d3c31486f4e353dc997c92…
commit 4d244d3c31486f4e353dc997c92fa46129d82406
Author: Holger Hans Peter Freyther <holger(a)moiji-mobile.com>
Date: Mon Mar 23 10:53:42 2015 +0100
XUA: Move m2ua headers to sigtran, create xua_types.h and m3ua_types.h
Begin with type definitions for m3ua
-----------------------------------------------------------------------
Summary of changes:
configure.ac | 2 +-
include/Makefile.am | 2 +-
include/m2ua/Makefile.am | 2 -
include/sigtran/Makefile.am | 2 +
include/{m2ua => sigtran}/m2ua_types.h | 43 ----------
include/sigtran/m3ua_types.h | 113 +++++++++++++++++++++++++
include/{m2ua/m2ua_msg.h => sigtran/xua_msg.h} | 29 +++----
include/sigtran/xua_types.h | 45 ++++++++++
src/Makefile.am | 4 +-
src/{m2ua_msg.c => xua_msg.c} | 72 ++++++++--------
tests/m2ua/Makefile.am | 2 +-
tests/m2ua/m2ua_test.c | 23 ++---
12 files changed, 225 insertions(+), 114 deletions(-)
delete mode 100644 include/m2ua/Makefile.am
create mode 100644 include/sigtran/Makefile.am
rename include/{m2ua => sigtran}/m2ua_types.h (88%)
create mode 100644 include/sigtran/m3ua_types.h
rename include/{m2ua/m2ua_msg.h => sigtran/xua_msg.h} (65%)
create mode 100644 include/sigtran/xua_types.h
rename src/{m2ua_msg.c => xua_msg.c} (64%)
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 "Cellmanager NG, intended to interface with BSplus".
The branch, master has been updated
via 1cedd4a599ee0a324bddf16ebd8a0ac8add4ca92 (commit)
via 6b471a2738c793f171b27c82e0cc5017be04ce8b (commit)
from 9544ee2955c77e5edbff31436714f26ed1cec5ca (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/cellmgr-ng/commit/?id=1cedd4a599ee0a324bddf16ebd8a0…
commit 1cedd4a599ee0a324bddf16ebd8a0ac8add4ca92
Author: Holger Hans Peter Freyther <holger(a)moiji-mobile.com>
Date: Wed Jul 30 09:37:47 2014 +0200
debian: Add a start script for osmo-stp
http://cgit.osmocom.org/cellmgr-ng/commit/?id=6b471a2738c793f171b27c82e0cc5…
commit 6b471a2738c793f171b27c82e0cc5017be04ce8b
Author: Holger Hans Peter Freyther <holger(a)moiji-mobile.com>
Date: Wed Jul 30 09:33:50 2014 +0200
debian: Rename the packages
-----------------------------------------------------------------------
Summary of changes:
debian/changelog | 10 +-
debian/control | 18 +--
...-cellmgr-ng.install => osmo-cellmgr-ng.install} | 0
debian/osmo-stp.init | 151 +++++++++++++++++++++
debian/osmo-stp.install | 1 +
debian/osmocom-cellmgr-stp.install | 1 -
...-mgw.install => posmo-cellmgr-mgcp-mgw.install} | 0
debian/rules | 6 +-
src/Makefile.am | 2 +-
9 files changed, 173 insertions(+), 16 deletions(-)
rename debian/{osmocom-cellmgr-ng.install => osmo-cellmgr-ng.install} (100%)
create mode 100755 debian/osmo-stp.init
create mode 100644 debian/osmo-stp.install
delete mode 100644 debian/osmocom-cellmgr-stp.install
rename debian/{posmocom-cellmgr-mgcp-mgw.install => posmo-cellmgr-mgcp-mgw.install} (100%)
hooks/post-receive
--
Cellmanager NG, intended to interface with BSplus
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 7ce72c1be8e10add6dc84b85a29f7e2b924c6464 (commit)
from 7c7358e91ee794242086c4e0b7668e847b7e9905 (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=7ce72c1be8e10add6dc84b85a29f7e2b…
commit 7ce72c1be8e10add6dc84b85a29f7e2b924c6464
Author: Holger Hans Peter Freyther <holger(a)moiji-mobile.com>
Date: Sun Mar 22 14:43:19 2015 +0100
rtp: And really catch up and remove all occurences of openbsc/rtp.h
-----------------------------------------------------------------------
Summary of changes:
openbsc/tests/mgcp/mgcp_transcoding_test.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
hooks/post-receive
--
The OpenBSC GSM Base Station Controller (+MSC/HLR/SGSN)