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 a76a7d0c6c526f333ebdc02d2332a8b6659d8fb2 (commit)
via d000d80968ce6292d6715008ed803ec1f41b6a10 (commit)
from 92e9c17aec02006a38922c41f9c5b59df6c45ea0 (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-pcu/commit/?id=a76a7d0c6c526f333ebdc02d2332a8b…
commit a76a7d0c6c526f333ebdc02d2332a8b6659d8fb2
Author: Max <msuraev(a)sysmocom.de>
Date: Fri Jan 26 11:09:16 2018 +0100
Simplify TS alloc: adjust function signatures
* document used parameters and return values
* use consistent formatting
* constify function parameters where appropriate (adjusting parameter
types if necessary)
Change-Id: I211b10b4da59c73d509b719346774515c761886a
Related: OS#2282
http://cgit.osmocom.org/osmo-pcu/commit/?id=d000d80968ce6292d6715008ed803ec…
commit d000d80968ce6292d6715008ed803ec1f41b6a10
Author: Max <msuraev(a)sysmocom.de>
Date: Wed Sep 20 17:55:28 2017 +0200
Simplify TS alloc: use defines for constants
* define and use constant for occupied TFI instead copying the same
magic number all over the place
* use libosmocore's define for bit pretty-printer
Change-Id: I2699ceebf0cbec01652a02fa68ccc9e9419d0293
Related: OS#2282
-----------------------------------------------------------------------
Summary of changes:
src/bts.cpp | 7 ++-
src/bts.h | 3 +-
src/gprs_rlcmac_ts_alloc.cpp | 113 ++++++++++++++++++++++++-------------------
tests/alloc/AllocTest.cpp | 6 +--
4 files changed, 70 insertions(+), 59 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 "UNNAMED PROJECT".
The branch, master has been updated
via 92e9c17aec02006a38922c41f9c5b59df6c45ea0 (commit)
via 92b7a50605793e59b233c537eb870eee3cc08e31 (commit)
via e9fe0e3d0621682d18d56f89f808c819db8bb5f6 (commit)
from a296118e6d2b1e42b5e51e47467881598f9101f2 (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-pcu/commit/?id=92e9c17aec02006a38922c41f9c5b59…
commit 92e9c17aec02006a38922c41f9c5b59df6c45ea0
Author: Max <msuraev(a)sysmocom.de>
Date: Thu Sep 28 16:25:25 2017 +0200
Simplify TS alloc: avoid TS reassignment
Assign reserved_*_slots only when multislot masks are found to avoid
reassignment and make code easier to follow.
Change-Id: I9b0482f4ea75ead9855cd78e33c8e70d0ccf4484
Related: OS#2282
http://cgit.osmocom.org/osmo-pcu/commit/?id=92b7a50605793e59b233c537eb870ee…
commit 92b7a50605793e59b233c537eb870eee3cc08e31
Author: Max <msuraev(a)sysmocom.de>
Date: Fri Jan 26 11:01:35 2018 +0100
Simplify TS alloc: fix allocation calls
Using the semantic patch below, adjust allocation-related calls to match
updated allocator signatures.
// spatch --c++ --dir src -I src --sp-file callfix.spatch --in-place --recursive-includes
// spatch --c++ --dir tests -I src --sp-file callfix.spatch --in-place --recursive-includes
@@ expression A, B, C, D, E; @@
tbf_alloc_ul_tbf(A, B, C, D, E,
(
- 1
+ true
|
- 0
+ false
)
)
@@ expression A, B, C, D, E; @@
tbf_alloc_dl_tbf(A, B, C, D, E,
(
- 1
+ true
|
- 0
+ false
)
)
Change-Id: I43c76cb49093b40eb854d324e898e821270053dc
Related: OS#2282
http://cgit.osmocom.org/osmo-pcu/commit/?id=e9fe0e3d0621682d18d56f89f808c81…
commit e9fe0e3d0621682d18d56f89f808c819db8bb5f6
Author: Max <msuraev(a)sysmocom.de>
Date: Thu Sep 28 15:56:05 2017 +0200
Simplify TS alloc: adjust allocator signatures
* drop unused parameters (from both functions and structs)
* document used parameters and return values
* tighten types used for parameters
* use consistent formatting
Tests are adjusted accordingly but test results are left untouched to
avoid regressions.
Change-Id: I39d81ab64ff790b9c4c2d0312a574485cd83e755
Related: OS#2282
-----------------------------------------------------------------------
Summary of changes:
src/bts.cpp | 2 +-
src/bts.h | 8 +++----
src/gprs_rlcmac.h | 24 ++++++++-----------
src/gprs_rlcmac_ts_alloc.cpp | 56 +++++++++++++++++++++++++++-----------------
src/tbf.cpp | 26 +++++++++-----------
src/tbf.h | 10 ++++----
src/tbf_dl.cpp | 6 ++---
tests/alloc/AllocTest.cpp | 33 ++++++++++++++------------
tests/tbf/TbfTest.cpp | 13 +++++-----
9 files changed, 92 insertions(+), 86 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 "An utility library for Open Source Mobile Communications".
The branch, master has been updated
via cd82710be7276c4276d85a109248f94d5720def4 (commit)
via e50b00911b72cbbdeca7bfa1de58a50a2e108abb (commit)
from d60e17ab0ee9993edf17e859737fc9a56660058d (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=cd82710be7276c4276d85a109248…
commit cd82710be7276c4276d85a109248f94d5720def4
Author: Harald Welte <laforge(a)gnumonks.org>
Date: Sat Jan 27 09:43:03 2018 +0100
gsm_04_08.h: Reduce T310 default to 30s.
3GPP doesn't specify a network-side T310 default, but waiting for 180s
(3 minutes!) for the next message after CALL CONFIRMED is clearly way
too long and will just use radio resources for no good reason.
Change-Id: Ia52f9358bc86b23c72af9c80e2fff5cb0004b57a
Related: OS#2884
http://cgit.osmocom.org/libosmocore/commit/?id=e50b00911b72cbbdeca7bfa1de58…
commit e50b00911b72cbbdeca7bfa1de58a50a2e108abb
Author: Harald Welte <laforge(a)gnumonks.org>
Date: Sat Jan 27 09:40:34 2018 +0100
gsm_04_08.h: Clearly annotate timers that don't have a 3GPP Default value
Change-Id: I44fffaec1f7c0d819aa2ebc85e97f19581fc689c
-----------------------------------------------------------------------
Summary of changes:
include/osmocom/gsm/protocol/gsm_04_08.h | 14 +++++++-------
1 file changed, 7 insertions(+), 7 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 "Osmocom code for Iuh interface".
The branch, master has been updated
via aec91ab3477529e386fc548a2fcb55ff405bd949 (commit)
from 2293df070c8bcdbc1445ddd6ff09b58708136575 (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-iuh/commit/?id=aec91ab3477529e386fc548a2fcb55f…
commit aec91ab3477529e386fc548a2fcb55ff405bd949
Author: Pau Espin Pedrol <pespin(a)sysmocom.de>
Date: Mon Jan 22 19:03:37 2018 +0100
configure.ac: Enable -Wall flag
Change-Id: Ib05f7862081708d578d8f0302d926aab42897dc2
-----------------------------------------------------------------------
Summary of changes:
configure.ac | 3 +++
1 file changed, 3 insertions(+)
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 "Software-defined analyzer for APCO P25".
The branch, max has been updated
via 4cde5ac5d8c7d014ded958b04fb9b5de12344a35 (commit)
from 43bd7e7ae1559e083e870689fa946116f2035ae2 (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=4cde5ac5d8c7d014ded958b04fb9b5de123…
commit 4cde5ac5d8c7d014ded958b04fb9b5de12344a35
Author: Max <ikj1234i(a)yahoo.com>
Date: Fri Jan 26 14:55:14 2018 -0500
bugfix in -P thx Scott
-----------------------------------------------------------------------
Summary of changes:
op25/gr-op25_repeater/apps/rx.py | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
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 "Osmocom BTS-side code (Abis, scheduling, ...)".
The branch, master has been updated
via 40c05f07f49721e3ec89f6cd4a21a187a41336ef (commit)
via 7d62629ca2a8e0b467d650bc4fed3c66178d7171 (commit)
from 75d0fcdfcd4dec0e3d11127a7982014b5d3bf660 (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=40c05f07f49721e3ec89f6cd4a21a18…
commit 40c05f07f49721e3ec89f6cd4a21a187a41336ef
Author: Philipp Maier <pmaier(a)sysmocom.de>
Date: Thu Jan 25 19:00:34 2018 +0100
fix nullpointer deref in rsl_tx_mode_modif_nack()
The function rsl_tx_mode_modif_nack() uses abis_bts_rsl_sendmsg().
This function relys on msg->trx to be set (see abis.c). However,
rsl_tx_mode_modif_nack() creates the message buffer, but does
not set msg->trx.
- Make sure that msg->trx is set properly
Change-Id: Ib5990db11df1b25dc5d321193731426b11f8005a
http://cgit.osmocom.org/osmo-bts/commit/?id=7d62629ca2a8e0b467d650bc4fed3c6…
commit 7d62629ca2a8e0b467d650bc4fed3c66178d7171
Author: Philipp Maier <pmaier(a)sysmocom.de>
Date: Fri Jan 26 10:23:20 2018 +0100
rsl: fix double-free in rsl_rx_mode_modif()
When the RSL_IE_CHAN_MODE is is missing, then the message buffer
is freed and the channel mode modify is nacked using
return rsl_tx_mode_modif_nack()
The function rsl_tx_mode_modif_nack uses abis_bts_rsl_sendmsg()
which returns 0 on success. This eventually leads into a double-
free in rsl_rx_dchan() which frees the message buffer on all
return codes except 1.
- Remove the excess msgb_free() in the error handling path.
Change-Id: I946a927ba35aa115520b1248eefccd91832f69f6
-----------------------------------------------------------------------
Summary of changes:
src/common/rsl.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
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 OpenGGSN project".
The branch, master has been updated
via 4e43ef5ab09b187903a74958a92ade0b6b06e352 (commit)
via 4ae8d8232db38cbba898c1a2eedd25552b2ca434 (commit)
via 0bdd8bf5bcfecfc6a8d1228dd2dfebcac3f7f819 (commit)
via 5b1ef9589ccb2507af06f6a65c341fe0f7564ab4 (commit)
via 7d54ed48e78e9666217865f4586c26c6ec896fe6 (commit)
via 07730bb9cc5e225576e6efa8678a7b78a626a7b7 (commit)
via 7b38af5cd3ffcc158cb79397ebe25ffe174dce47 (commit)
via 85ef5833cb009f5a079b322fb0eeb22e46f64db9 (commit)
from a2a08f7602d590848234fcdce688189afa887b3e (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-ggsn/commit/?id=4e43ef5ab09b187903a74958a92ade…
commit 4e43ef5ab09b187903a74958a92ade0b6b06e352
Author: Pau Espin Pedrol <pespin(a)sysmocom.de>
Date: Fri Jan 26 18:12:19 2018 +0100
ggsn: Print all addresses on successful pdp ctx creation
Change-Id: I0c57df17d91bade127027e03633494adb6f818c5
http://cgit.osmocom.org/osmo-ggsn/commit/?id=4ae8d8232db38cbba898c1a2eedd25…
commit 4ae8d8232db38cbba898c1a2eedd25552b2ca434
Author: Pau Espin Pedrol <pespin(a)sysmocom.de>
Date: Fri Jan 26 17:51:55 2018 +0100
ggsn: Parse PCO_IPCP for IPv4v6 pdp ctx
pdp_has_v4 only take into account IPv4 EUAs.
Change-Id: I1cf8d6548951e5732075beeea1412d12fb6bdec3
http://cgit.osmocom.org/osmo-ggsn/commit/?id=0bdd8bf5bcfecfc6a8d1228dd2dfeb…
commit 0bdd8bf5bcfecfc6a8d1228dd2dfebcac3f7f819
Author: Pau Espin Pedrol <pespin(a)sysmocom.de>
Date: Fri Jan 26 17:46:37 2018 +0100
ggsn: Parse PCO_IPCP
Improvements include:
- Use Identifier received from request instead of using hardcoded id=0.
- Don't add DNS to response if they were not included in request.
Change-Id: Ic8aa5d634e526683b2ad8ed5d14088e171c41c98
http://cgit.osmocom.org/osmo-ggsn/commit/?id=5b1ef9589ccb2507af06f6a65c341f…
commit 5b1ef9589ccb2507af06f6a65c341fe0f7564ab4
Author: Pau Espin Pedrol <pespin(a)sysmocom.de>
Date: Thu Jan 25 20:50:59 2018 +0100
ggsn: Validate packet src addr from MS
Closes: OS#2422
Change-Id: Ie658a7f161103bb6f631ab0508e45e55fb42a442
http://cgit.osmocom.org/osmo-ggsn/commit/?id=7d54ed48e78e9666217865f4586c26…
commit 7d54ed48e78e9666217865f4586c26c6ec896fe6
Author: Pau Espin Pedrol <pespin(a)sysmocom.de>
Date: Thu Jan 25 20:09:16 2018 +0100
ggsn: encaps_tun: Avoid forwarding packet if EUA is unassigned, fix crash
Check (before forwarding received GTP packets into the tun) if the pdp ctx
associated with the packet requested was assigned an EUA of the given IP version.
This way we avoid for instance forwarding an IPv6 packet (or sending
back a response to a Router Solicitation packet) in case the APN was
configured without IPv6 support or if the MS/SGSN didn't ask for an IPv6
while requesting an EUA.
As a side effect, this commit fixes an OSMO_ASSERT hit introduced in handle_router_mcast
in 2d6a69e69a4b4cb2b8cc63c4810dae44e5a4d8f6 due to a deffective MS
sending an icmpv6 Router Solicitation over IPv6 after having been
requesting and assigned an IPv4 EUA (so no IPv6 packets expected).
Before that commit, there was no crash but the message was being wrongly
answered and used an uninitialized .v6 addr field from the peer struct.
Fixes: OS#2843
Change-Id: Ib6d18a64c2b71f3bcf6cb7e3a978d2d3f9c7a79b
http://cgit.osmocom.org/osmo-ggsn/commit/?id=07730bb9cc5e225576e6efa8678a7b…
commit 07730bb9cc5e225576e6efa8678a7b78a626a7b7
Author: Pau Espin Pedrol <pespin(a)sysmocom.de>
Date: Thu Jan 25 18:43:38 2018 +0100
gtp/gtp.c: Use uint8_t for version param in static functions
Change-Id: I9afc36e2304f1060615219e88dd28821fb74e300
http://cgit.osmocom.org/osmo-ggsn/commit/?id=7b38af5cd3ffcc158cb79397ebe25f…
commit 7b38af5cd3ffcc158cb79397ebe25ffe174dce47
Author: Pau Espin Pedrol <pespin(a)sysmocom.de>
Date: Thu Jan 25 18:35:33 2018 +0100
gtp/gtp.c: Mark non exported functions as static
Functions not exported in gtp.h should be static.
There's no need to mark functions as extern in the .c file.
Change-Id: Ie61d5c6e0ae45ef3885911cedf71c826ed1705d0
http://cgit.osmocom.org/osmo-ggsn/commit/?id=85ef5833cb009f5a079b322fb0eeb2…
commit 85ef5833cb009f5a079b322fb0eeb22e46f64db9
Author: Pau Espin Pedrol <pespin(a)sysmocom.de>
Date: Thu Jan 25 18:36:55 2018 +0100
gtp/gtp.c: Remove unused function char2ul_t
Change-Id: I0d7493404ea05ce2e795958041bbb6cb75a04d31
-----------------------------------------------------------------------
Summary of changes:
ggsn/ggsn.c | 148 +++++++++++++++++++++++++++++++++++++++++++++++-----------
ggsn/icmpv6.c | 15 ++----
ggsn/icmpv6.h | 4 +-
gtp/gtp.c | 42 +++++++----------
4 files changed, 145 insertions(+), 64 deletions(-)
hooks/post-receive
--
The OpenGGSN 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 "A python tool to program magic SIMs".
The branch, fairwaves/sim has been updated
via 5dfda9fdd7856a99c031dcefec12dc6f4fecd5f9 (commit)
via 99b5e321e552ed4aa1192207102c792119a60e0b (commit)
via d21ef12f8d5c938be749af8c9d5340695a4b28ba (commit)
via 1198ad9e155fd65764b15f93729e1c625b36ace3 (commit)
via cc85a1ee7108a4190217d67676bbc83d505f5a3a (commit)
from 2322c1f9ffb17bdd09e35d1c1d66947c1f324726 (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/pysim/commit/?id=5dfda9fdd7856a99c031dcefec12dc6f4f…
commit 5dfda9fdd7856a99c031dcefec12dc6f4fecd5f9
Author: Alexander Chemeris <Alexander.Chemeris(a)gmail.com>
Date: Sat Jan 27 02:09:04 2018 +0900
pySim-fairwaves-prog: Read a selected A3/A8 algorithm.
Change-Id: I757ea725bd5616dbd6ef329ea5981063fd780761
http://cgit.osmocom.org/pysim/commit/?id=99b5e321e552ed4aa1192207102c792119…
commit 99b5e321e552ed4aa1192207102c792119a60e0b
Author: Alexander Chemeris <Alexander.Chemeris(a)gmail.com>
Date: Sat Jan 27 02:08:25 2018 +0900
Checking in pySim-read-all.py - utility to read all known files on a SIM card.
Change-Id: Iaa301a8a6356d610753c2bba286187c3220833a9
http://cgit.osmocom.org/pysim/commit/?id=d21ef12f8d5c938be749af8c9d5340695a…
commit d21ef12f8d5c938be749af8c9d5340695a4b28ba
Author: Alexander Chemeris <Alexander.Chemeris(a)gmail.com>
Date: Sat Jan 27 02:07:10 2018 +0900
commands: Allow reading binary/record files if they are already selected.
Change-Id: Iad3b240eab8a54a4d0ef2623bc9dd17f7dce5fa5
http://cgit.osmocom.org/pysim/commit/?id=1198ad9e155fd65764b15f93729e1c625b…
commit 1198ad9e155fd65764b15f93729e1c625b36ace3
Author: Alexander Chemeris <Alexander.Chemeris(a)gmail.com>
Date: Sat Jan 27 02:06:30 2018 +0900
utils: Add a function to decode SELECT result for EF files.
Change-Id: Ib2af7fe5205654c5277fec01b6b0b10a68e472b9
http://cgit.osmocom.org/pysim/commit/?id=cc85a1ee7108a4190217d67676bbc83d50…
commit cc85a1ee7108a4190217d67676bbc83d505f5a3a
Author: Alexander Chemeris <Alexander.Chemeris(a)gmail.com>
Date: Sat Jan 27 02:05:20 2018 +0900
utils: Zero-pad MCC and MNC in enc_plmn()
Change-Id: I94607f6a87a416d05bd577a29d1466452921d604
-----------------------------------------------------------------------
Summary of changes:
pySim-fairwaves-prog.py | 7 +++
pySim-read.py => pySim-read-all.py | 94 +++++++++++++++-----------------------
pySim/commands.py | 14 ++++--
pySim/utils.py | 21 ++++++++-
4 files changed, 73 insertions(+), 63 deletions(-)
copy pySim-read.py => pySim-read-all.py (61%)
hooks/post-receive
--
A python tool to program magic SIMs
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 OpenGGSN project".
The branch, master has been updated
via a2a08f7602d590848234fcdce688189afa887b3e (commit)
from 282d4e3dda5c3a1eabb76da601c5a680a1ccbd15 (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-ggsn/commit/?id=a2a08f7602d590848234fcdce68818…
commit a2a08f7602d590848234fcdce688189afa887b3e
Author: Viktor Tsymbalyuk <viktor.tsymbalyuk(a)gmail.com>
Date: Fri Jan 26 12:47:55 2018 +0200
sgsnemu: sgsnemu stopped after recieving "Request accepted" from ggsn
"sgsnemu" stopped with the message "Received create PDP context response. Cause value: 128",
but normaly at that poit it should continue working and create "user plane".
Reason: Funtion "create_pdp_conf" checking result of "in46a_from_eua" and mistakenly
returned EOF when more than 1 IP address provided by GGSN.
Now function "create_pdp_conf" stopped with error when 0 IP provided or error code comes from "in46a_from_eua".
Fixes: 2d6a69e69a4b4cb2b8cc63c4810dae44e5a4d8f6 ("Add support for IPv4v6 End User Addresses")
Change-Id: I7881b8e1f27c432007cb6e5ff665a2ce55f103b5
-----------------------------------------------------------------------
Summary of changes:
sgsnemu/sgsnemu.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
hooks/post-receive
--
The OpenGGSN 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 "Manuals for Osmocom GSM components".
The branch, master has been updated
via 908b83836674545befb20ad13ac37262ac1756c1 (commit)
via 66c6dcce3ceb3f32d5043528cb126b7249d1b23b (commit)
from 88ef855d234276bb33eec2700cadaa6d4c671078 (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=908b83836674545befb20ad…
commit 908b83836674545befb20ad13ac37262ac1756c1
Author: Harald Welte <laforge(a)gnumonks.org>
Date: Fri Jan 26 11:30:44 2018 +0100
GSUP: Change wording to cover both SGSN and MSC/VLR
Change-Id: I4b473e324e9314f4e9356a8bae6fbb48dbaaf58c
http://cgit.osmocom.org/osmo-gsm-manuals/commit/?id=66c6dcce3ceb3f32d504352…
commit 66c6dcce3ceb3f32d5043528cb126b7249d1b23b
Author: Harald Welte <laforge(a)gnumonks.org>
Date: Fri Jan 26 11:16:45 2018 +0100
share chapters/gsup.adoc from OsmoSGSN to OsmoMSC + OsmoHLR
Since the NITB split, GSUP is used in all three network elements, so
make the protocol a shared chapter
Change-Id: Id2d7c27ef16eb0ebe5f60d625a1fcf42f1603f4f
-----------------------------------------------------------------------
Summary of changes:
OsmoHLR/osmohlr-usermanual.adoc | 2 +
OsmoMSC/osmomsc-usermanual.adoc | 2 +
OsmoSGSN/osmosgsn-usermanual.adoc | 2 +-
{OsmoSGSN => common}/chapters/gsup.adoc | 96 ++++++++++++++++-----------------
4 files changed, 53 insertions(+), 49 deletions(-)
rename {OsmoSGSN => common}/chapters/gsup.adoc (88%)
hooks/post-receive
--
Manuals for Osmocom GSM components