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 code for Iuh interface".
The branch, neels/ranap_iu has been updated
discards 68b5c13adb3cf28dc355b0e734f2d2311be86120 (commit)
via d5a564775f84814edf23358e9330da13acc90408 (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 (68b5c13adb3cf28dc355b0e734f2d2311be86120)
\
N -- N -- N (d5a564775f84814edf23358e9330da13acc90408)
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/osmo-iuh/commit/?id=d5a564775f84814edf23358e9330da1…
commit d5a564775f84814edf23358e9330da13acc90408
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Wed Jul 5 14:38:52 2017 +0200
move openbsc.git's iu.h, iu.c, iu_vty.c here as iu_client* NOT FOR MERGE
*** NOT FOR MERGE: use SCCP address book: the libsccp address book code is
currently in flux, will follow in the next patch set when pmaier is ready with
it ***
To help split openbsc.git to separate MSC and SGSN repositories, place the
common Iu interface related code here in libosmo-ranap. Also apply various
improvements while moving (from intermittent code review).
The code depends on libosmo-ranap tightly. One reason to want this separate
from libosmo-ranap could be that it uses libosmo-sigtran, accepting an sccp
instance. However, including in libosmo-ranap is the simplest way to go. The
osmo-iuh build depends on libosmo-sigtran anyway because of OsmoHNBGW, and all
current users of libosmo-ranap also naturally link libosmo-sigtran already.
Apply prefix ranap_iu_ and RANAP_IU_ to allow smooth transition from the
openbsc.git iu_ to the libranap ranap_iu_ implementations.
Prune unneeded #include statements.
Instead of sccp_addr, store an rnc pointer in the ue_conn_ctx. To facilitate,
also:
- Move iu_rnc struct to iu_client.h (as ranap_iu_rnc).
- Instead of sccp_addr, pass rnc to ue_conn_ctx_alloc().
- Pass a local struct new_ue_conn_ctx containing the sccp_addr and conn_id up
the RANAP handling stack in case of an InitialUE message.
- Separate the InitialUE message handling from cn_ranap_handle_co(), by moving
to new and separate cn_ranap_handle_co_initial(), so we can still pass a
looked-up ue_conn_ctx to all other cn_ranap_handle_co() code paths.
- Allocate the ue_conn_ctx only in ranap_handle_co_initial_ue(), not as early
as before.
Note that we are not actually ever using the rnc pointer now present in
ue_conn_ctx. It could be used for more concise paging, to first page only the
RNC where we last saw the subscriber. So far we page all matching LAC/RACs.
Tweak error logging: use __func__ instead of writing the function names as
string constants.
In iu_client_vty.c:
- Move the asn.1 debug commands from logging over to the iu node. They are not
specific to the logging target. They could qualify for an entirely separate
'asn1' root node, but for simplicity place under 'iu'.
- Add the 'asn1' commands to ranap_iu_vty_config_write(), so far missing.
- remove the legacy "net." from a VTY error message, it is not known which name
the parent node of 'iu' has.
Change-Id: I6a3f7ad15be03fb94689b4af6ccfa828c25f45c0
-----------------------------------------------------------------------
Summary of changes:
include/osmocom/ranap/iu_client.h | 13 ++----
src/iu_client.c | 84 ++++++++++++++++++++++++++-------------
src/iu_client_vty.c | 34 ++++++++++------
3 files changed, 82 insertions(+), 49 deletions(-)
hooks/post-receive
--
Osmocom code for Iuh 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 "Legacy: The OpenBSC GSM Base Station Controller (+MSC/HLR/SGSN)".
The branch, master has been updated
via ab2454e776f1a4bc4977ef48ec2844600f85176b (commit)
via 9f64c54040857079fa5ca35bf522d3befe7ac362 (commit)
from 4d87e22980edb5a0ec170801980f76c837183b32 (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=ab2454e776f1a4bc4977ef48ec284460…
commit ab2454e776f1a4bc4977ef48ec2844600f85176b
Author: Harald Welte <laforge(a)gnumonks.org>
Date: Thu Jul 20 01:19:18 2017 +0200
bsc_vty: Don't allow timers of zero (0)
It typically doesn't make sense to configure any of the GSM RR timer
to 0 (Seconds). In fact, accidentially configuring any of the timers
to zero might have severe side effects, such as "stuck channels"
described in https://osmocom.org/issues/2380
Change-Id: I517828f2f0c80ec01cb63648db2626f17a67fe57
http://cgit.osmocom.org/openbsc/commit/?id=9f64c54040857079fa5ca35bf522d3be…
commit 9f64c54040857079fa5ca35bf522d3befe7ac362
Author: Harald Welte <laforge(a)gnumonks.org>
Date: Thu Jul 20 01:47:39 2017 +0200
GSM timers: User reasonable defaults; don't save if equal default
A number of the GSM timers (including T3109) had no reasonable
default values if not specified in the VTY / config file. Together
with unconditional writing to the config file, this created
config files with a persistent setting for important timers as '0'.
To make things worse, many of our example cofig files suffered from the
same problem.
Let's avoid this from happening by
* having reasonable defaults if nothing specified in the config file
* conditionally savingg timers only if they differ from default
* reject any timer values that state zero during start-up (see previous
commit)
Change-Id: Iaac0bfca423852b61d8b9eb1438157ef00d0d8c8
Closes: OS#2380
-----------------------------------------------------------------------
Summary of changes:
openbsc/doc/examples/osmo-bsc/osmo-bsc.cfg | 12 --------
.../osmo-nitb/bs11/openbsc-1bts-2trx-hopping.cfg | 11 --------
.../examples/osmo-nitb/bs11/openbsc-1bts-2trx.cfg | 2 --
.../examples/osmo-nitb/bs11/openbsc-2bts-2trx.cfg | 2 --
openbsc/doc/examples/osmo-nitb/bs11/openbsc.cfg | 2 --
.../osmo-nitb/nanobts/openbsc-multitrx.cfg | 11 --------
openbsc/doc/examples/osmo-nitb/nanobts/openbsc.cfg | 11 --------
.../osmo-nitb/nokia/openbsc_nokia_3trx.cfg | 2 --
openbsc/doc/examples/osmo-nitb/rbs2308/openbsc.cfg | 12 --------
.../doc/examples/osmo-nitb/sysmobts/openbsc.cfg | 11 --------
openbsc/include/openbsc/gsm_data.h | 12 ++++++--
openbsc/src/libbsc/bsc_vty.c | 33 +++++++++++++---------
openbsc/src/libbsc/net_init.c | 9 +++++-
13 files changed, 37 insertions(+), 93 deletions(-)
hooks/post-receive
--
Legacy: 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 "Manuals for Osmocom GSM components".
The branch, master has been updated
via 005901b1de577913a32440158914b8e489cc47ed (commit)
via 36cc3e748cb4d766bfa3795643186ab86121d14d (commit)
via 2d133928e8d7b381d21c385146c9f19242144e16 (commit)
via 85d6c12f518d2dddc2da21785ed531bf4c5baed1 (commit)
from d04deae00293820ab27b2b3374e83bb3a5e3e933 (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-gsm-manuals/commit/?id=005901b1de577913a324401…
commit 005901b1de577913a32440158914b8e489cc47ed
Author: Pau Espin Pedrol <pespin(a)sysmocom.de>
Date: Wed Jul 19 16:29:23 2017 +0200
osmux-reference-docinfo: Add latest changes to revhistory
Change-Id: I01e513a71a3f830d393c57c43678d7e4c8d2d151
http://cgit.osmocom.org/osmo-gsm-manuals/commit/?id=36cc3e748cb4d766bfa3795…
commit 36cc3e748cb4d766bfa3795643186ab86121d14d
Author: Pau Espin Pedrol <pespin(a)sysmocom.de>
Date: Wed Jul 19 15:31:55 2017 +0200
osmux-reference: Add traffic saving plot
Change-Id: I8fa60c1f95436c39fd1ff9424a907876d367484e
http://cgit.osmocom.org/osmo-gsm-manuals/commit/?id=2d133928e8d7b381d21c385…
commit 2d133928e8d7b381d21c385146c9f19242144e16
Author: Pau Espin Pedrol <pespin(a)sysmocom.de>
Date: Wed Jul 19 13:21:25 2017 +0200
osmux-reference: Add sequence charts
Change-Id: Ic2c63e4d9e67b877dc06a206ec7f07d0704329a5
http://cgit.osmocom.org/osmo-gsm-manuals/commit/?id=85d6c12f518d2dddc2da217…
commit 85d6c12f518d2dddc2da21785ed531bf4c5baed1
Author: Pau Espin Pedrol <pespin(a)sysmocom.de>
Date: Tue Jul 18 18:56:22 2017 +0200
osmux-reference: Use packetdiag to draw packet header structures
Change-Id: Id75152278f41d56b7bd2e652b9947e33d6523c64
-----------------------------------------------------------------------
Summary of changes:
INSTALL.txt | 3 +-
OsmoBSC/Makefile | 3 +
OsmoBSC/osmux-reference-docinfo.xml | 8 +
OsmoBSC/osmux-reference.adoc | 378 ++++++++++++++++------
build/Makefile.asciidoc.inc | 2 +-
build/{mscgen-filter.conf => python2-filter.conf} | 11 +-
6 files changed, 306 insertions(+), 99 deletions(-)
copy build/{mscgen-filter.conf => python2-filter.conf} (50%)
hooks/post-receive
--
Manuals for Osmocom GSM components
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 "Legacy: The OpenBSC GSM Base Station Controller (+MSC/HLR/SGSN)".
The annotated tag, fairwaves/0.15.1-fw.7 has been created
at 1b8e9cae0de5432d715202eee4c4cd93dbb014c2 (tag)
tagging c9d1f6f84194ae025e44f3dd86b4f5f792868c26 (commit)
replaces fairwaves/0.15.1-fw.6
tagged by Ivan Kluchnikov
on Wed Jul 19 18:45:55 2017 +0300
- Log -----------------------------------------------------------------
Fairwaves 0.15.1-fw.7 version.
Ivan Kluchnikov (4):
gsm_04_08: Add handling of rtp bridge mode in tch_recv_mncc function to avoid executing code which is used for rtp proxy mode
gsm_04_08: Enable mncc_rtp_connect_pending flag for conn after receiving retrieve ind to be able to re-connect rtp
gsm_04_08: Implement support of placing an existing call on hold when another call comes in and switching to new call
debian: Update changelog to 0.15.1-fw.7
-----------------------------------------------------------------------
hooks/post-receive
--
Legacy: 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 "Legacy: The OpenBSC GSM Base Station Controller (+MSC/HLR/SGSN)".
The branch, fairwaves/master-rebase has been updated
via c9d1f6f84194ae025e44f3dd86b4f5f792868c26 (commit)
via 37885be945925f11601b1a5133a2a937810759d7 (commit)
via 73c4ac258dfdc691649b90203c08e606ac2ed4d5 (commit)
via 9630a78755fd066b296dce451a0fa39912f4bf05 (commit)
from 203a4a12608459f1dcccf550659cabded1051846 (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=c9d1f6f84194ae025e44f3dd86b4f5f7…
commit c9d1f6f84194ae025e44f3dd86b4f5f792868c26
Author: Ivan Kluchnikov <kluchnikovi(a)gmail.com>
Date: Wed Jul 19 18:44:29 2017 +0300
debian: Update changelog to 0.15.1-fw.7
http://cgit.osmocom.org/openbsc/commit/?id=37885be945925f11601b1a5133a2a937…
commit 37885be945925f11601b1a5133a2a937810759d7
Author: Ivan Kluchnikov <kluchnikovi(a)gmail.com>
Date: Wed Jul 19 18:18:27 2017 +0300
gsm_04_08: Implement support of placing an existing call on hold when another call comes in and switching to new call
In this case two transactions with links to the same lchan are in transaction list:
* transaction for call on hold
* transaction for active call.
New condition was added for searching function to avoid selecting transaction
which was put on hold and use active call transaction for rtp handling and handover procedures.
http://cgit.osmocom.org/openbsc/commit/?id=73c4ac258dfdc691649b90203c08e606…
commit 73c4ac258dfdc691649b90203c08e606ac2ed4d5
Author: Ivan Kluchnikov <kluchnikovi(a)gmail.com>
Date: Wed Jul 19 17:46:24 2017 +0300
gsm_04_08: Enable mncc_rtp_connect_pending flag for conn after receiving retrieve ind to be able to re-connect rtp
http://cgit.osmocom.org/openbsc/commit/?id=9630a78755fd066b296dce451a0fa399…
commit 9630a78755fd066b296dce451a0fa39912f4bf05
Author: Ivan Kluchnikov <kluchnikovi(a)gmail.com>
Date: Wed Jul 19 17:38:41 2017 +0300
gsm_04_08: Add handling of rtp bridge mode in tch_recv_mncc function to avoid executing code which is used for rtp proxy mode
-----------------------------------------------------------------------
Summary of changes:
debian/changelog | 8 ++++++++
openbsc/src/libmsc/gsm_04_08.c | 9 +++++++++
2 files changed, 17 insertions(+)
hooks/post-receive
--
Legacy: 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 "Osmocom BTS-side code (Abis, scheduling, ...)".
The branch, master has been updated
via 0e9dadc3d8e475eff867388b2db65919da36c505 (commit)
via d7546ed090666f0c60afe9737f7ee64964530a53 (commit)
via f66d2fc1e6e4a3aea3258f33170236a65a0892f0 (commit)
from 2d2fca434209f96ae2c3b9e0221c6a063d23dfd9 (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=0e9dadc3d8e475eff867388b2db6591…
commit 0e9dadc3d8e475eff867388b2db65919da36c505
Author: Harald Welte <laforge(a)gnumonks.org>
Date: Wed Jul 19 15:54:30 2017 +0200
scheduler: Fix wrong log subsystem: L1C is L1 *control* not user data
RTS.ind, DATA.* and TCH.* primitives are L1P, not L1C.
Change-Id: I4a32b83225e931ced561fdf457fa962e8ad44bd2
http://cgit.osmocom.org/osmo-bts/commit/?id=d7546ed090666f0c60afe9737f7ee64…
commit d7546ed090666f0c60afe9737f7ee64964530a53
Author: Harald Welte <laforge(a)gnumonks.org>
Date: Wed Jul 19 15:24:10 2017 +0200
VIRT-PHY: Report virtual RACH bursts with plausible burst type
Change-Id: I35b103c512993fc52d4e608f07115a4bb4b21022
http://cgit.osmocom.org/osmo-bts/commit/?id=f66d2fc1e6e4a3aea3258f33170236a…
commit f66d2fc1e6e4a3aea3258f33170236a65a0892f0
Author: Harald Welte <laforge(a)gnumonks.org>
Date: Wed Jul 19 15:22:55 2017 +0200
virt: Don't print NOTICE log message if ARFCN doesn't match
In a larger simulated network with multiple BTSs it is normal that one
BTS will see GSMTAP frames for an ARFCN that is not an ARFCN used by the
local BTS. This is just normal operation.
Change-Id: Ic68cace9648ccb17500c94b6ede8814674aa9c29
-----------------------------------------------------------------------
Summary of changes:
src/common/scheduler.c | 18 +++++++++---------
src/osmo-bts-virtual/l1_if.c | 9 ++++-----
2 files changed, 13 insertions(+), 14 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 "The Open Source GSM Base Band stack".
The branch, master has been updated
via 5e0fa863cb6a66c2073bb218489e6291755c2283 (commit)
via dd3fd10903e30eaff2e878cd6a7fce242032bc4c (commit)
from f122d4cd364a6ba0c3d73ff017c3cc598ebf10f1 (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=5e0fa863cb6a66c2073bb218489e6…
commit 5e0fa863cb6a66c2073bb218489e6291755c2283
Author: Harald Welte <laforge(a)gnumonks.org>
Date: Wed Jul 19 14:10:04 2017 +0200
VIRT-PHY: enable proper memory leak debugging
We make sure that all allocations are tracked back to one talloc root
context, and install the usual SIGUSR1 handler to dump the talloc
report. This enables us to do interactive debugging for memory leaks
while virtphy is running.
Change-Id: I73b3cf86eea5f56595c1b045cf0fde8035ff185a
http://cgit.osmocom.org/osmocom-bb/commit/?id=dd3fd10903e30eaff2e878cd6a7fc…
commit dd3fd10903e30eaff2e878cd6a7fce242032bc4c
Author: Harald Welte <laforge(a)gnumonks.org>
Date: Wed Jul 19 14:00:09 2017 +0200
VIRT-PHY: We don't do line-breaks inside log statements
Change-Id: I27cba13ee782c53a9b2406319241fc7f4e3db0bd
-----------------------------------------------------------------------
Summary of changes:
src/host/virt_phy/src/virt_l1_sched_simple.c | 2 +-
src/host/virt_phy/src/virtphy.c | 31 +++++++++++++++++++++++-----
2 files changed, 27 insertions(+), 6 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 Open Source GSM Base Band stack".
The branch, master has been updated
via f122d4cd364a6ba0c3d73ff017c3cc598ebf10f1 (commit)
via c0fba7a298fc8c7fada32b24f71aa27e0ec90cd6 (commit)
via d80c6f4ef8a58a728ed41e6f36d57b96cad4c4ce (commit)
via f7dafcc5d2db77c03354c549e5493b2c4f78ac67 (commit)
via 198dbda3c830e5a361d335a34305fb70a805986e (commit)
via f5e0f6424b35751d54e82a08f8d6e6de22ddea9a (commit)
from ef9ee6116ba145f8a09ecc614bb000004a302145 (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=f122d4cd364a6ba0c3d73ff017c3c…
commit f122d4cd364a6ba0c3d73ff017c3cc598ebf10f1
Author: Harald Welte <laforge(a)gnumonks.org>
Date: Wed Jul 19 13:53:30 2017 +0200
VIRT-PHY: Properly destroy l1_model_ms after disconnect
If a MS disconnects, we need to clean up all related state
Change-Id: Ib7adef61150b5a4338483019e4dd75d7279d1f5d
http://cgit.osmocom.org/osmocom-bb/commit/?id=c0fba7a298fc8c7fada32b24f71aa…
commit c0fba7a298fc8c7fada32b24f71aa27e0ec90cd6
Author: Harald Welte <laforge(a)gnumonks.org>
Date: Wed Jul 19 13:39:54 2017 +0200
VIRT-PHY: Change default log levels
This will basically only print L1C message for all L1CTL happening
between MS and the BTS, while suppressing the GSMTAP/virtUM and L1P
related messages.
Change-Id: I9513db3cee12644ed9b9858e13b740ffd27aba24
http://cgit.osmocom.org/osmocom-bb/commit/?id=d80c6f4ef8a58a728ed41e6f36d57…
commit d80c6f4ef8a58a728ed41e6f36d57b96cad4c4ce
Author: Harald Welte <laforge(a)gnumonks.org>
Date: Wed Jul 19 13:01:56 2017 +0200
VIRT-PHY: Clean up logging statements
The generated log lines have been *super* long, let's make them
significantly shorter. Also, differentiate between DEBUG and INFO
level, so normal operation with LOGL_INFO will not spam the user while
still printing useful information.
Change-Id: If06a8b5f99349796d66a71201524361a6547945a
http://cgit.osmocom.org/osmocom-bb/commit/?id=f7dafcc5d2db77c03354c549e5493…
commit f7dafcc5d2db77c03354c549e5493b2c4f78ac67
Author: Harald Welte <laforge(a)gnumonks.org>
Date: Wed Jul 19 12:14:35 2017 +0200
VIRT-PHY: Separate logging of L1 Control and L1 Data
L1 Data is quite verbose, while control is typically limited, so let's
make sure we log them as separate sub-systems
Change-Id: Idebc371a63508c593855486ff01b2ba6e8c2cfd1
http://cgit.osmocom.org/osmocom-bb/commit/?id=198dbda3c830e5a361d335a34305f…
commit 198dbda3c830e5a361d335a34305fb70a805986e
Author: Harald Welte <laforge(a)gnumonks.org>
Date: Wed Jul 19 11:53:13 2017 +0200
VIRT-PHY: Log MS context number whenever possible
Now that we can have multiple MS connected to one virtphy instance,
it is important to log some context whenever possible. To do so, we
introduce a monotonically increasing MS number which gets assigned
whenever we allocate a l1_model_ms and printed when the LOGPMS() or
DEBUGPMS() macros are used.
Change-Id: Id7d9507126a03def5bd7690f1dbe987f9a749e65
http://cgit.osmocom.org/osmocom-bb/commit/?id=f5e0f6424b35751d54e82a08f8d6e…
commit f5e0f6424b35751d54e82a08f8d6e6de22ddea9a
Author: Harald Welte <laforge(a)gnumonks.org>
Date: Wed Jul 19 11:02:47 2017 +0200
VIRT-PHY: Major rewrite to deal with muliple L1CTL clients
Change-Id: Ibfb2a93f8b45a95215c01368b1a52d92283474e6
-----------------------------------------------------------------------
Summary of changes:
src/host/virt_phy/include/virtphy/gsmtapl1_if.h | 6 +-
src/host/virt_phy/include/virtphy/l1ctl_sap.h | 64 +++----
src/host/virt_phy/include/virtphy/l1ctl_sock.h | 35 +++-
src/host/virt_phy/include/virtphy/logging.h | 12 +-
src/host/virt_phy/include/virtphy/virt_l1_model.h | 12 +-
src/host/virt_phy/include/virtphy/virt_l1_sched.h | 16 +-
src/host/virt_phy/src/gsmtapl1_if.c | 190 +++++++++----------
src/host/virt_phy/src/l1ctl_sap.c | 219 +++++++++++-----------
src/host/virt_phy/src/l1ctl_sock.c | 98 ++++++----
src/host/virt_phy/src/logging.c | 24 ++-
src/host/virt_phy/src/virt_l1_model.c | 22 ++-
src/host/virt_phy/src/virt_l1_sched_simple.c | 56 +++---
src/host/virt_phy/src/virt_prim_data.c | 47 ++---
src/host/virt_phy/src/virt_prim_fbsb.c | 38 ++--
src/host/virt_phy/src/virt_prim_pm.c | 35 ++--
src/host/virt_phy/src/virt_prim_rach.c | 38 ++--
src/host/virt_phy/src/virt_prim_traffic.c | 46 ++---
src/host/virt_phy/src/virtphy.c | 61 ++++--
18 files changed, 537 insertions(+), 482 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 "SCCP Library".
The branch, master has been updated
via 6823dd9f442ce912e8fdc15aa923cff38a20e487 (commit)
from e29888ab693c0130ecac096c46567092087748dd (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=6823dd9f442ce912e8fdc15aa92…
commit 6823dd9f442ce912e8fdc15aa923cff38a20e487
Author: Philipp Maier <pmaier(a)sysmocom.de>
Date: Fri Jul 7 10:26:39 2017 +0200
vty: make addressbook available for _sg and _asp
The installation of the vty commands for the sccp addressbook is
currently located in osmo_ss7_vty_init_sg(), which is normally
only used in signalling gateway applications. An ASP would lack
the addressbook functionality.
Make SCCP addressbook available for both SG and ASP
Change-Id: Ib49ab623055e9ada7f95e0163ba7e33c5f6f99cb
-----------------------------------------------------------------------
Summary of changes:
src/osmo_ss7_vty.c | 69 +++++++++++++++++++++++++++++-------------------------
1 file changed, 37 insertions(+), 32 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 "The Open Source GSM Base Band stack".
The branch, master has been updated
via ef9ee6116ba145f8a09ecc614bb000004a302145 (commit)
via 7b6071208eb98bb1eaeb667e2fc3869896ed7123 (commit)
via c2083feefae447ad0afac232f38a62dc58d0ee82 (commit)
via 3ee8ac1593957119eec398b0682207dac31a2dd8 (commit)
via 70dd7e5b75b1e7e008545a615d33d1134cf42339 (commit)
via c4324da7c6f684689b6c2343fc817f96c98419b8 (commit)
via 4f9913f1fd3702c8e5af0e1afab0ada9bad3e522 (commit)
from 48d2a55b40871c584b0af8ff4c918a7734a12b59 (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=ef9ee6116ba145f8a09ecc614bb00…
commit ef9ee6116ba145f8a09ecc614bb000004a302145
Author: Harald Welte <laforge(a)gnumonks.org>
Date: Wed Jul 19 00:32:36 2017 +0200
VIRT-PHY: Don't redefine GSMTAP port number, use libosmocore
Change-Id: I11d04d76292c52ec5ab70893e8c6a2e55586b2ec
http://cgit.osmocom.org/osmocom-bb/commit/?id=7b6071208eb98bb1eaeb667e2fc38…
commit 7b6071208eb98bb1eaeb667e2fc3869896ed7123
Author: Harald Welte <laforge(a)gnumonks.org>
Date: Tue Jul 18 23:32:55 2017 +0200
VIRT-PHY Use libosmocore unix domain socket helper
Change-Id: Ic0fa003bd7c7468d39a0c39fbea89000d576a4f3
http://cgit.osmocom.org/osmocom-bb/commit/?id=c2083feefae447ad0afac232f38a6…
commit c2083feefae447ad0afac232f38a62dc58d0ee82
Author: Harald Welte <laforge(a)gnumonks.org>
Date: Tue Jul 18 22:18:52 2017 +0200
VIRT-PHY: reorganize data structures
* l1_model_ms can become a static member of l1_model_ms
* crypto_info_ms can become a static member of l1_state_ms
Change-Id: I94ca4dad1c6c668ce6307d5e5d728b1c1502af12
http://cgit.osmocom.org/osmocom-bb/commit/?id=3ee8ac1593957119eec398b068220…
commit 3ee8ac1593957119eec398b0682207dac31a2dd8
Author: Harald Welte <laforge(a)gnumonks.org>
Date: Tue Jul 18 21:41:24 2017 +0200
VIRT-PHY: some more comments/documentation
Change-Id: I24fc98624178e9441d6cfcd61bc14e17c1391e9e
http://cgit.osmocom.org/osmocom-bb/commit/?id=70dd7e5b75b1e7e008545a615d33d…
commit 70dd7e5b75b1e7e008545a615d33d1134cf42339
Author: Harald Welte <laforge(a)gnumonks.org>
Date: Thu Jul 13 17:15:14 2017 +0200
VIRT-PHY: Use IPv4 multicast groups for private / local scope
The addresses in the original code make little sense:
* 224.0.0.1 is "All systems on this subnet" and not routed
outside the local ethernet segment
* 225.0.0.1 is in a RESERVED range that shouldn't be used
Change-Id: I8e3acd745e65a6cfa70b681a440da6a59a1ed0b5
http://cgit.osmocom.org/osmocom-bb/commit/?id=c4324da7c6f684689b6c2343fc817…
commit c4324da7c6f684689b6c2343fc817f96c98419b8
Author: Harald Welte <laforge(a)gnumonks.org>
Date: Thu Jul 13 16:37:27 2017 +0200
VIRT-PHY: Use osmo_fd_close() introduced in libosmocore
libosmocore has recently received a new function osmo_fd_close() which
can be used to replace the private fd_close() function in this code.
This requires Change-Id Icd0933eed6a24edde7cdcb378e138897ecc5332c in
libosmocore.
Change-Id: Id8a518dfb09465c2765681407e5581aee2d62d6d
http://cgit.osmocom.org/osmocom-bb/commit/?id=4f9913f1fd3702c8e5af0e1afab0a…
commit 4f9913f1fd3702c8e5af0e1afab0ada9bad3e522
Author: Harald Welte <laforge(a)gnumonks.org>
Date: Thu Jul 13 16:35:50 2017 +0200
VIRT-PHY: Use new OSMO_SOCK_F_NO_MCAST_{LOOP,ALL} flags
libosmocore has recently gained support for flags like
OSMO_SOCK_F_NO_MCAST_LOOP and OSMO_SOCK_F_NO_MCAST_ALL that can be
passed to the socket initializer functions, further reducing complexity
of the code in osmo_mcast_sock.c here.
The related change-IDs are I5ab5de45c0b64ceb3636ea98245a23defa24ffd4 and
I24a5b1ebc3f84d2d5d4734e54df50efaea26490b in libosmocore.git.
Change-Id: I961aa07a381fef2cf9a2fb5357937864364ca04b
-----------------------------------------------------------------------
Summary of changes:
src/host/virt_phy/include/virtphy/virt_l1_model.h | 19 ++++---
src/host/virt_phy/include/virtphy/virtual_um.h | 17 ++++--
src/host/virt_phy/src/gsmtapl1_if.c | 18 +++----
src/host/virt_phy/src/l1ctl_sap.c | 40 +++++++-------
src/host/virt_phy/src/l1ctl_sock.c | 39 ++++----------
src/host/virt_phy/src/shared/osmo_mcast_sock.c | 63 +++++------------------
src/host/virt_phy/src/virt_l1_model.c | 2 -
src/host/virt_phy/src/virt_l1_sched_simple.c | 2 +-
src/host/virt_phy/src/virt_prim_data.c | 4 +-
src/host/virt_phy/src/virt_prim_fbsb.c | 26 +++++-----
src/host/virt_phy/src/virt_prim_pm.c | 31 ++++++-----
src/host/virt_phy/src/virt_prim_rach.c | 9 ++--
src/host/virt_phy/src/virt_prim_traffic.c | 4 +-
src/host/virt_phy/src/virtphy.c | 10 ++--
14 files changed, 122 insertions(+), 162 deletions(-)
hooks/post-receive
--
The Open Source GSM Base Band stack