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, zecke/features/osmux-reliability has been updated
discards c9923e4e8a8752fe084fbf2bdb6c0755c11fed2e (commit)
discards a63000032940bd32331d0a5529f85ff57ddc7d72 (commit)
discards c7a776c496f21d5e044bc030dc61b01ab7b36aa2 (commit)
discards 46a518979424913841a3f512eb04838333f64481 (commit)
discards d10daee17fd32369a103e11dac1482638df462ec (commit)
discards 97bf148af933b8c80bbc3a79e830208b9c172039 (commit)
via 864db676cd56213dd59594eae62a576acf55ee62 (commit)
via f55bb41c326b3d9582912818d38b7b492d63a4ce (commit)
via fb664ad57d853565bca3289f2b83ee8347bb5ef5 (commit)
via 9b54b132599ee366a642008a41c63c855b666deb (commit)
via ed96fdb774da99313f2ffbc08511451b3f33330e (commit)
via ba67df65233121043568c299c5d868c6d63e74a3 (commit)
via fded0a7362cbe4507ccb9d4c5e75a3700fca9657 (commit)
via 0e62e595a697eb6075349b586ed264bdb9462cd0 (commit)
via 06cfe00c711a037981b53946dbaa5b042acb2fbb (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 (c9923e4e8a8752fe084fbf2bdb6c0755c11fed2e)
\
N -- N -- N (864db676cd56213dd59594eae62a576acf55ee62)
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/openbsc/commit/?id=864db676cd56213dd59594eae62a576a…
commit 864db676cd56213dd59594eae62a576acf55ee62
Author: Holger Hans Peter Freyther <holger(a)moiji-mobile.com>
Date: Thu Oct 8 16:58:13 2015 +0200
osmux: Make sure that bigger Osmux ids actually fit
We put a signed integer into this string but did not account
for the newline and for the terminating NUL of the string. Add
the newline to the string and add one for NUL. Spotted while
accidently having a CID of 255.
http://cgit.osmocom.org/openbsc/commit/?id=f55bb41c326b3d9582912818d38b7b49…
commit f55bb41c326b3d9582912818d38b7b492d63a4ce
Author: Holger Hans Peter Freyther <holger(a)moiji-mobile.com>
Date: Sun Oct 4 11:11:11 2015 +0200
osmux: Remember the allocated CID and make sure it is released
There appears to be a leak of CIDs:
<000b> mgcp_osmux.c:544 All Osmux circuits are in use!
There are paths that a CID had been requested and never released
of the NAT. Remember the allocated CID inside the endpoint so it
can always be released. It is using a new variable as the behavior
for the NAT and MGCP MGW is different.
The allocated_cid must be signed so that we can assign outside
of the 0-255 range of it.
Fixes: OW#1493
http://cgit.osmocom.org/openbsc/commit/?id=fb664ad57d853565bca3289f2b83ee83…
commit fb664ad57d853565bca3289f2b83ee8347bb5ef5
Author: Holger Hans Peter Freyther <holger(a)moiji-mobile.com>
Date: Fri Oct 2 18:15:18 2015 +0200
osmux: Enforce Osmux only global and per BSC configuration
Extend the osmux only setting from the MGCP MGW to the NAT. This
is applied when an endpoint is allocated and/or when the allocation
is confirmed by the remote system.
Not tested. The impact should only be when the new option is
being used.
Fixes: OW#1492
http://cgit.osmocom.org/openbsc/commit/?id=9b54b132599ee366a642008a41c63c85…
commit 9b54b132599ee366a642008a41c63c855b666deb
Author: Holger Hans Peter Freyther <holger(a)moiji-mobile.com>
Date: Fri Oct 2 17:38:27 2015 +0200
osmux: Allow to enforce using Osmux for the client
Some systems only want to use Osmux. In case only Osmux
should be used fail if it has not be offered/acked.
Client:
Verified On, Off and Only with X-Osmux: 3 and without this field.
<000b> mgcp_protocol.c:823 Osmux only and no osmux offered on 0x14
<000b> mgcp_protocol.c:884 Resource error on 0x14
NAT:
Not tested and implemented
Fixes: OW#1492
http://cgit.osmocom.org/openbsc/commit/?id=ed96fdb774da99313f2ffbc08511451b…
commit ed96fdb774da99313f2ffbc08511451b3f33330e
Author: Holger Hans Peter Freyther <holger(a)moiji-mobile.com>
Date: Fri Oct 2 16:25:21 2015 +0200
osmux: Add introspection for osmux.
* Print number of used CIDs for the system
* Hopefully this is just the beginning
http://cgit.osmocom.org/openbsc/commit/?id=ba67df65233121043568c299c5d868c6…
commit ba67df65233121043568c299c5d868c6d63e74a3
Author: Holger Hans Peter Freyther <holger(a)moiji-mobile.com>
Date: Fri Oct 2 16:11:15 2015 +0200
osmux: Do not divide the number of bytes by eight.
sizeof(uint8_t) == 1 and there is no need to create an array
with 16 bytes and then only use the first two of them. This
means the CID range is from 0 to 127 and we should be able
to extend this to 256 by changing the array size to 32. Update
the testcase now that we can have more than 16 calls with Osmux.
http://cgit.osmocom.org/openbsc/commit/?id=fded0a7362cbe4507ccb9d4c5e75a370…
commit fded0a7362cbe4507ccb9d4c5e75a3700fca9657
Author: Holger Hans Peter Freyther <holger(a)moiji-mobile.com>
Date: Fri Oct 2 15:56:35 2015 +0200
osmux: Test cid allocation and de-allocation
* Test that one can get an id
* That they are assigned predicatble right now
* That returning them will make the number of used ones go down
* That allocating more will fail
-----------------------------------------------------------------------
Summary of changes:
openbsc/doc/osmocom-authn-protocol.txt | 250 ++++++++++++++++++++++++++++++
openbsc/include/openbsc/mgcp_internal.h | 2 +-
openbsc/src/gprs/gprs_gsup_client.c | 12 +-
openbsc/src/osmo-bsc_nat/bsc_mgcp_utils.c | 6 +-
4 files changed, 263 insertions(+), 7 deletions(-)
create mode 100644 openbsc/doc/osmocom-authn-protocol.txt
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 "The OpenBSC GSM Base Station Controller (+MSC/HLR/SGSN)".
The branch, neels/gtphub has been updated
via 72687c6c6891d286709d4f1be27320f4747f0430 (commit)
via db7b42465a670ce63f52ee2910f85722aee5c73f (commit)
via 6caab4a264b5728388ac3f0828055568bd002a9c (commit)
from 90684febe4124b914b318a7d3689a157613c4c52 (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=72687c6c6891d286709d4f1be27320f4…
commit 72687c6c6891d286709d4f1be27320f4747f0430
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Thu Oct 8 14:01:42 2015 +0200
gtphub: comment in nc test
http://cgit.osmocom.org/openbsc/commit/?id=db7b42465a670ce63f52ee2910f85722…
commit db7b42465a670ce63f52ee2910f85722aee5c73f
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Thu Oct 8 13:32:34 2015 +0200
gtphub: rename: server/client to GGSN/SGSN.
http://cgit.osmocom.org/openbsc/commit/?id=6caab4a264b5728388ac3f0828055568…
commit 6caab4a264b5728388ac3f0828055568bd002a9c
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Thu Oct 8 13:31:40 2015 +0200
gtphub: add a todo comment
-----------------------------------------------------------------------
Summary of changes:
openbsc/include/openbsc/gtphub.h | 8 ++---
openbsc/src/gprs/gtphub.c | 64 ++++++++++++++++++----------------
openbsc/src/gprs/gtphub_main.c | 38 ++++++++++----------
openbsc/tests/gtphub/gtphub_nc_test.sh | 1 +
4 files changed, 57 insertions(+), 54 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 "The OpenBSC GSM Base Station Controller (+MSC/HLR/SGSN)".
The branch, neels/sgsn-id-3 has been updated
via 49a3b1bb03624e8c6c6ec418a37f3272a04d6147 (commit)
via ec9b57c4756711ca78d22f9a44287609e7843bc8 (commit)
from ac287bf95f0c17dbad4d4278577da057bf5d39cb (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=49a3b1bb03624e8c6c6ec418a37f3272…
commit 49a3b1bb03624e8c6c6ec418a37f3272a04d6147
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Thu Oct 8 15:11:28 2015 +0200
wip: big endian
http://cgit.osmocom.org/openbsc/commit/?id=ec9b57c4756711ca78d22f9a44287609…
commit ec9b57c4756711ca78d22f9a44287609e7843bc8
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Thu Oct 8 15:11:16 2015 +0200
libcommon/utils.c: fix copyright
-----------------------------------------------------------------------
Summary of changes:
openbsc/include/openbsc/utils.h | 8 ++++++--
openbsc/src/gprs/gprs_gsup_messages.c | 15 +++++++++++++++
openbsc/src/gprs/oap_messages.c | 11 +++++++----
openbsc/src/libcommon/utils.c | 26 +++-----------------------
4 files changed, 31 insertions(+), 29 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 "The OpenBSC GSM Base Station Controller (+MSC/HLR/SGSN)".
The branch, master has been updated
via 0e62e595a697eb6075349b586ed264bdb9462cd0 (commit)
via 06cfe00c711a037981b53946dbaa5b042acb2fbb (commit)
from 8b4e58462167493e31109e965b4ad6c32d2215f1 (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=0e62e595a697eb6075349b586ed264bd…
commit 0e62e595a697eb6075349b586ed264bdb9462cd0
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Thu Oct 1 15:23:52 2015 +0200
Add OAP design document.
Sponsored-by: On-Waves ehf
http://cgit.osmocom.org/openbsc/commit/?id=06cfe00c711a037981b53946dbaa5b04…
commit 06cfe00c711a037981b53946dbaa5b042acb2fbb
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Thu Oct 1 15:23:51 2015 +0200
gsup: factor out header composition & sending.
Move IPA header composition and sending to new static gsup_client_send() (so I
can use it in the upcoming OAP code).
Sponsored-by: On-Waves ehf
-----------------------------------------------------------------------
Summary of changes:
openbsc/doc/osmocom-authn-protocol.txt | 250 +++++++++++++++++++++++++++++++++
openbsc/src/gprs/gprs_gsup_client.c | 12 +-
2 files changed, 259 insertions(+), 3 deletions(-)
create mode 100644 openbsc/doc/osmocom-authn-protocol.txt
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 "The OpenBSC GSM Base Station Controller (+MSC/HLR/SGSN)".
The branch, neels/gtphub has been updated
discards 08b610f6a17f73ae0700dfac3d7ac83359dee7fb (commit)
discards 643aab5b4d6e305b8b325faabe51f223c8ce01ef (commit)
discards a14b2d0fed3237c672b446ae4cb30b4a9f121481 (commit)
discards 283d3f5b9b87f7bd9fb03de4985560b9246c7912 (commit)
discards 36ba00e9b0e2d86e9af97f0be9271a66d3e1bbae (commit)
discards 77a651c0609b903a91d5055147c0f04278df9397 (commit)
discards 7602383ea5831f84518e769c69de7e2aead29cdb (commit)
discards f0b8a88a76c5edf5f6c161b91a393a911896ea0e (commit)
discards 2c7b7dcb80b2fb8df45be7990578301e02821dfa (commit)
discards de4610e9d70b9ff5cecb27fc0acb1720ce791837 (commit)
via 90684febe4124b914b318a7d3689a157613c4c52 (commit)
via 4ec65fc2f4b7e175ca9b3d3f42d9ef0c0d532034 (commit)
via 63f9b39f5dfedd04fca33bf18dcf4da5f4bfe586 (commit)
via 8d193170495850d4ab7680dbd53d4f153e37002c (commit)
via 5aff4a5d9221d703bb52bb8421eabaa8283332b6 (commit)
via 2fd5c8febf69b5ea1c4dd9cc826024f59ea06fb4 (commit)
via 03475a31e1c95b52f521df5e10b73a5bcce67c2f (commit)
via 9883b09d7c4f0a3caf76dc985a4f977cd4de2427 (commit)
via f31908d2c4e1e7e245d54b76debe9bac4a5a50e7 (commit)
via 90f5c9b527f92d7215642536fbe36e79cd3a91be (commit)
via 8b4e58462167493e31109e965b4ad6c32d2215f1 (commit)
via 7a77d0155f154b88d768832932b8b2c35681782f (commit)
via a174a47811f2168d63f6f021d3ed2f156bff9951 (commit)
via 615ed46a6ab25f71a7ab0d8201d33b4dbf8fc5b0 (commit)
via 11cb7a9fd9d853aaf5ff3d34c179fa3afc9a80a4 (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 (08b610f6a17f73ae0700dfac3d7ac83359dee7fb)
\
N -- N -- N (90684febe4124b914b318a7d3689a157613c4c52)
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/openbsc/commit/?id=90684febe4124b914b318a7d3689a157…
commit 90684febe4124b914b318a7d3689a157613c4c52
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Tue Oct 6 15:20:13 2015 +0200
gtphub: debug log
Sponsored-by: On-Waves ehi
http://cgit.osmocom.org/openbsc/commit/?id=4ec65fc2f4b7e175ca9b3d3f42d9ef0c…
commit 4ec65fc2f4b7e175ca9b3d3f42d9ef0c0d532034
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Tue Oct 6 14:31:41 2015 +0200
gtphub: add GTP header validation
Sponsored-by: On-Waves ehi
http://cgit.osmocom.org/openbsc/commit/?id=63f9b39f5dfedd04fca33bf18dcf4da5…
commit 63f9b39f5dfedd04fca33bf18dcf4da5f4bfe586
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Mon Oct 5 18:14:35 2015 +0200
gtphub: add TEI map test
Sponsored-by: On-Waves ehi
http://cgit.osmocom.org/openbsc/commit/?id=8d193170495850d4ab7680dbd53d4f15…
commit 8d193170495850d4ab7680dbd53d4f153e37002c
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Mon Oct 5 17:38:15 2015 +0200
gtphub: add gtphub_test.c (empty)
Sponsored-by: On-Waves ehi
http://cgit.osmocom.org/openbsc/commit/?id=5aff4a5d9221d703bb52bb8421eabaa8…
commit 5aff4a5d9221d703bb52bb8421eabaa8283332b6
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Tue Oct 6 13:16:07 2015 +0200
gtphub: add TEI map API.
Sponsored-by: On-Waves ehi
http://cgit.osmocom.org/openbsc/commit/?id=2fd5c8febf69b5ea1c4dd9cc826024f5…
commit 2fd5c8febf69b5ea1c4dd9cc826024f59ea06fb4
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Tue Oct 6 13:06:56 2015 +0200
gtphub: populate API impl from test prog
Sponsored-by: On-Waves ehi
http://cgit.osmocom.org/openbsc/commit/?id=03475a31e1c95b52f521df5e10b73a5b…
commit 03475a31e1c95b52f521df5e10b73a5bcce67c2f
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Sat Oct 3 03:38:20 2015 +0200
gtphub: add skeletal gtphub.[hc]
Sponsored-by: On-Waves ehf
http://cgit.osmocom.org/openbsc/commit/?id=9883b09d7c4f0a3caf76dc985a4f977c…
commit 9883b09d7c4f0a3caf76dc985a4f977cd4de2427
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Sat Oct 3 02:29:34 2015 +0200
gtphub: add simple netcat test
Tweak the hardcoded default ports/interfaces for the test.
Sponsored-by: On-Waves ehf
http://cgit.osmocom.org/openbsc/commit/?id=f31908d2c4e1e7e245d54b76debe9bac…
commit f31908d2c4e1e7e245d54b76debe9bac4a5a50e7
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Fri Sep 25 01:13:09 2015 +0200
gtphub: add to build
Add program osmo-gtphub from gtphub_main.c to Makefile.am.
Add osmo-gtphub binary to gitignore.
Sponsored-by: On-Waves ehf
http://cgit.osmocom.org/openbsc/commit/?id=90f5c9b527f92d7215642536fbe36e79…
commit 90f5c9b527f92d7215642536fbe36e79cd3a91be
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Thu Sep 24 17:32:30 2015 +0200
Add GTP hub stub, as simplistic UDP forwarder.
First steps towards a new GTP hub. The aim is to mux GTP connections, so that
multiple SGSN <--> GGSN links can pass through a single point. Background:
allow having more than one SGSN, possibly in various remote locations.
The recent addition of OAP to GSUP is related to the same background idea.
Sponsored-by: On-Waves ehf
-----------------------------------------------------------------------
Summary of changes:
openbsc/include/openbsc/bsc_api.h | 2 +-
openbsc/include/openbsc/gsm_04_08.h | 3 +-
openbsc/include/openbsc/gsm_data_shared.h | 10 ++---
openbsc/include/openbsc/gtphub.h | 8 +---
openbsc/src/gprs/gtphub.c | 61 +++++++++++++++----------------
openbsc/src/libbsc/abis_rsl.c | 18 ++++-----
openbsc/src/libbsc/bsc_api.c | 6 +--
openbsc/src/libbsc/bsc_vty.c | 59 +++++++++++++-----------------
openbsc/src/libbsc/gsm_04_08_utils.c | 57 ++++++++++++-----------------
openbsc/src/osmo-bsc/osmo_bsc_api.c | 36 ++++++++++++------
openbsc/tests/gtphub/gtphub_nc_test.sh | 11 ++++--
openbsc/tests/gtphub/gtphub_test.c | 4 --
12 files changed, 131 insertions(+), 144 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 "Osmocom code for Iuh interface".
The branch, master has been updated
via 9614d9aea7e7efa346cef23c14b78a1471dd0ab2 (commit)
from 0bb126123983237ae578d14857777d0af0818105 (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=9614d9aea7e7efa346cef23c14b78a1…
commit 9614d9aea7e7efa346cef23c14b78a1471dd0ab2
Author: Harald Welte <laforge(a)gnumonks.org>
Date: Wed Oct 7 15:59:25 2015 +0200
add more relevant/related specs
-----------------------------------------------------------------------
Summary of changes:
specs/by_chapter/25.401.pdf | 1 +
specs/by_chapter/25.410.pdf | 1 +
specs/by_chapter/25.414.pdf | 1 +
.../iu_data_transport_and_transport_signalling.pdf | 1 +
.../by_name/iu_general_aspects_and_principles.pdf | 1 +
specs/by_name/utran_overall_description.pdf | 1 +
specs/files/ts_125401v040200p.pdf | 1749 ++++++++++++++++++++
specs/files/ts_125410v120000p.pdf | Bin 0 -> 191294 bytes
specs/files/ts_125414v120000p.pdf | Bin 0 -> 124506 bytes
9 files changed, 1755 insertions(+)
create mode 120000 specs/by_chapter/25.401.pdf
create mode 120000 specs/by_chapter/25.410.pdf
create mode 120000 specs/by_chapter/25.414.pdf
create mode 120000 specs/by_name/iu_data_transport_and_transport_signalling.pdf
create mode 120000 specs/by_name/iu_general_aspects_and_principles.pdf
create mode 120000 specs/by_name/utran_overall_description.pdf
create mode 100644 specs/files/ts_125401v040200p.pdf
create mode 100644 specs/files/ts_125410v120000p.pdf
create mode 100644 specs/files/ts_125414v120000p.pdf
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 "The OpenBSC GSM Base Station Controller (+MSC/HLR/SGSN)".
The branch, neels/gtphub has been updated
discards a1b67624a89e70612f930648b1faf665cf12a069 (commit)
discards 39e0ae0d116e0f6ca994cc68ee7027db7a80a085 (commit)
discards 29346f282ee8068262ae94bdb45f092387eb169c (commit)
discards c5196eda209fdf6f5f4ac4daf6260625fdecb7e6 (commit)
discards 98f8bfd5e0fc1b47aead8a56bc99250041c53682 (commit)
discards 410ebe763004dcb9546b635ef90ae185c2176b4e (commit)
discards a1222bc41a099a4d1ba4af0bbb7a6d41b0b435d9 (commit)
discards f0ac548967187d668999b79887f9453a819df72f (commit)
via 08b610f6a17f73ae0700dfac3d7ac83359dee7fb (commit)
via 643aab5b4d6e305b8b325faabe51f223c8ce01ef (commit)
via a14b2d0fed3237c672b446ae4cb30b4a9f121481 (commit)
via 283d3f5b9b87f7bd9fb03de4985560b9246c7912 (commit)
via 36ba00e9b0e2d86e9af97f0be9271a66d3e1bbae (commit)
via 77a651c0609b903a91d5055147c0f04278df9397 (commit)
via 7602383ea5831f84518e769c69de7e2aead29cdb (commit)
via f0b8a88a76c5edf5f6c161b91a393a911896ea0e (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 (a1b67624a89e70612f930648b1faf665cf12a069)
\
N -- N -- N (08b610f6a17f73ae0700dfac3d7ac83359dee7fb)
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/openbsc/commit/?id=08b610f6a17f73ae0700dfac3d7ac833…
commit 08b610f6a17f73ae0700dfac3d7ac83359dee7fb
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Tue Oct 6 15:20:13 2015 +0200
gtphub: debug log
Sponsored-by: On-Waves ehi
http://cgit.osmocom.org/openbsc/commit/?id=643aab5b4d6e305b8b325faabe51f223…
commit 643aab5b4d6e305b8b325faabe51f223c8ce01ef
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Tue Oct 6 14:31:41 2015 +0200
gtphub: add GTP header validation
Sponsored-by: On-Waves ehi
http://cgit.osmocom.org/openbsc/commit/?id=a14b2d0fed3237c672b446ae4cb30b4a…
commit a14b2d0fed3237c672b446ae4cb30b4a9f121481
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Mon Oct 5 18:14:35 2015 +0200
gtphub: add TEI map test
Sponsored-by: On-Waves ehi
http://cgit.osmocom.org/openbsc/commit/?id=283d3f5b9b87f7bd9fb03de4985560b9…
commit 283d3f5b9b87f7bd9fb03de4985560b9246c7912
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Mon Oct 5 17:38:15 2015 +0200
gtphub: add gtphub_test.c (empty)
Sponsored-by: On-Waves ehi
http://cgit.osmocom.org/openbsc/commit/?id=36ba00e9b0e2d86e9af97f0be9271a66…
commit 36ba00e9b0e2d86e9af97f0be9271a66d3e1bbae
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Tue Oct 6 13:16:07 2015 +0200
gtphub: add TEI map API.
Sponsored-by: On-Waves ehi
http://cgit.osmocom.org/openbsc/commit/?id=77a651c0609b903a91d5055147c0f042…
commit 77a651c0609b903a91d5055147c0f04278df9397
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Tue Oct 6 13:06:56 2015 +0200
gtphub: populate API impl from test prog
Sponsored-by: On-Waves ehi
http://cgit.osmocom.org/openbsc/commit/?id=7602383ea5831f84518e769c69de7e2a…
commit 7602383ea5831f84518e769c69de7e2aead29cdb
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Sat Oct 3 03:38:20 2015 +0200
gtphub: add skeletal gtphub.[hc]
Sponsored-by: On-Waves ehf
http://cgit.osmocom.org/openbsc/commit/?id=f0b8a88a76c5edf5f6c161b91a393a91…
commit f0b8a88a76c5edf5f6c161b91a393a911896ea0e
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Sat Oct 3 02:29:34 2015 +0200
gtphub: add simple netcat test
Tweak the hardcoded default ports/interfaces for the test.
Sponsored-by: On-Waves ehf
-----------------------------------------------------------------------
Summary of changes:
openbsc/tests/gtphub/gtphub_nc_test.sh | 2 --
1 file changed, 2 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 "The OpenBSC GSM Base Station Controller (+MSC/HLR/SGSN)".
The branch, neels/gtphub has been updated
discards 0a54170c35f1353a81bd22cc7c4f970fd0c899a5 (commit)
discards 1b6e74a119e53e8a4cf89ae524868f5e703b9e37 (commit)
discards 5c5cb10d609a4a45b2685575d3bb7b28b312371f (commit)
via a1b67624a89e70612f930648b1faf665cf12a069 (commit)
via 39e0ae0d116e0f6ca994cc68ee7027db7a80a085 (commit)
via 29346f282ee8068262ae94bdb45f092387eb169c (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 (0a54170c35f1353a81bd22cc7c4f970fd0c899a5)
\
N -- N -- N (a1b67624a89e70612f930648b1faf665cf12a069)
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/openbsc/commit/?id=a1b67624a89e70612f930648b1faf665…
commit a1b67624a89e70612f930648b1faf665cf12a069
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Tue Oct 6 15:20:13 2015 +0200
gtphub: debug log
Sponsored-by: On-Waves ehi
http://cgit.osmocom.org/openbsc/commit/?id=39e0ae0d116e0f6ca994cc68ee7027db…
commit 39e0ae0d116e0f6ca994cc68ee7027db7a80a085
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Tue Oct 6 14:31:41 2015 +0200
gtphub: add GTP header validation
Sponsored-by: On-Waves ehi
http://cgit.osmocom.org/openbsc/commit/?id=29346f282ee8068262ae94bdb45f0923…
commit 29346f282ee8068262ae94bdb45f092387eb169c
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Mon Oct 5 18:14:35 2015 +0200
gtphub: add TEI map test
Sponsored-by: On-Waves ehi
-----------------------------------------------------------------------
Summary of changes:
openbsc/tests/gtphub/gtphub_test.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
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 "The OpenBSC GSM Base Station Controller (+MSC/HLR/SGSN)".
The branch, neels/gtphub has been updated
discards cd890730030de5c8e1944f1605f54d2fa022336e (commit)
discards 498ba37a966745fbdd1b26c52843ec0443d08e77 (commit)
discards 711b8ffd34e1b71829b0790f5aac04b0bdf49210 (commit)
discards aa096403cf6c32eda3948e885cbf15eccb68f1aa (commit)
discards d0f8a7ba4671eac183cd8e15ec80f308d23308b0 (commit)
discards b53041f34d09f881ff5095f58d80d24529f1f551 (commit)
discards 1c6f9f07f3b37f804690e0efb00a050bf00704a2 (commit)
via 0a54170c35f1353a81bd22cc7c4f970fd0c899a5 (commit)
via 1b6e74a119e53e8a4cf89ae524868f5e703b9e37 (commit)
via 5c5cb10d609a4a45b2685575d3bb7b28b312371f (commit)
via c5196eda209fdf6f5f4ac4daf6260625fdecb7e6 (commit)
via 98f8bfd5e0fc1b47aead8a56bc99250041c53682 (commit)
via 410ebe763004dcb9546b635ef90ae185c2176b4e (commit)
via a1222bc41a099a4d1ba4af0bbb7a6d41b0b435d9 (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 (cd890730030de5c8e1944f1605f54d2fa022336e)
\
N -- N -- N (0a54170c35f1353a81bd22cc7c4f970fd0c899a5)
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/openbsc/commit/?id=0a54170c35f1353a81bd22cc7c4f970f…
commit 0a54170c35f1353a81bd22cc7c4f970fd0c899a5
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Tue Oct 6 15:20:13 2015 +0200
gtphub: debug log
Sponsored-by: On-Waves ehi
http://cgit.osmocom.org/openbsc/commit/?id=1b6e74a119e53e8a4cf89ae524868f5e…
commit 1b6e74a119e53e8a4cf89ae524868f5e703b9e37
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Tue Oct 6 14:31:41 2015 +0200
gtphub: add GTP header validation
Sponsored-by: On-Waves ehi
http://cgit.osmocom.org/openbsc/commit/?id=5c5cb10d609a4a45b2685575d3bb7b28…
commit 5c5cb10d609a4a45b2685575d3bb7b28b312371f
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Mon Oct 5 18:14:35 2015 +0200
gtphub: add TEI map test
Sponsored-by: On-Waves ehi
http://cgit.osmocom.org/openbsc/commit/?id=c5196eda209fdf6f5f4ac4daf6260625…
commit c5196eda209fdf6f5f4ac4daf6260625fdecb7e6
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Mon Oct 5 17:38:15 2015 +0200
gtphub: add gtphub_test.c (empty)
Sponsored-by: On-Waves ehi
http://cgit.osmocom.org/openbsc/commit/?id=98f8bfd5e0fc1b47aead8a56bc992500…
commit 98f8bfd5e0fc1b47aead8a56bc99250041c53682
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Tue Oct 6 13:16:07 2015 +0200
gtphub: add TEI map API.
Sponsored-by: On-Waves ehi
http://cgit.osmocom.org/openbsc/commit/?id=410ebe763004dcb9546b635ef90ae185…
commit 410ebe763004dcb9546b635ef90ae185c2176b4e
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Tue Oct 6 13:06:56 2015 +0200
gtphub: populate API impl from test prog
Sponsored-by: On-Waves ehi
http://cgit.osmocom.org/openbsc/commit/?id=a1222bc41a099a4d1ba4af0bbb7a6d41…
commit a1222bc41a099a4d1ba4af0bbb7a6d41b0b435d9
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Sat Oct 3 03:38:20 2015 +0200
gtphub: add skeletal gtphub.[hc]
Sponsored-by: On-Waves ehf
-----------------------------------------------------------------------
Summary of changes:
openbsc/include/openbsc/gtphub.h | 10 +++++-----
openbsc/src/gprs/gtphub.c | 12 ++++++++----
openbsc/src/gprs/gtphub_main.c | 2 +-
3 files changed, 14 insertions(+), 10 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 "The OpenBSC GSM Base Station Controller (+MSC/HLR/SGSN)".
The branch, neels/gtphub has been updated
discards 32e24e0b500c11a0a8895fdd536c20ee268585c6 (commit)
discards 23c9616a85a9a2fdf9e3e9b3886cce4c37b8dbee (commit)
discards e9454f1fae291376faecf73264440196ef08119e (commit)
discards 9110ee2bd7ea2e1189421d36c2ec3e32ab284431 (commit)
discards 36ef9ceb2889b43335c398e7b8494da7466f9f37 (commit)
discards d14b20ada17f128ed8039b21c3f3efde4ff35b21 (commit)
discards 9e24b9a25c38182c74d1cb51324343874b10089c (commit)
via cd890730030de5c8e1944f1605f54d2fa022336e (commit)
via 498ba37a966745fbdd1b26c52843ec0443d08e77 (commit)
via 711b8ffd34e1b71829b0790f5aac04b0bdf49210 (commit)
via aa096403cf6c32eda3948e885cbf15eccb68f1aa (commit)
via d0f8a7ba4671eac183cd8e15ec80f308d23308b0 (commit)
via b53041f34d09f881ff5095f58d80d24529f1f551 (commit)
via 1c6f9f07f3b37f804690e0efb00a050bf00704a2 (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 (32e24e0b500c11a0a8895fdd536c20ee268585c6)
\
N -- N -- N (cd890730030de5c8e1944f1605f54d2fa022336e)
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/openbsc/commit/?id=cd890730030de5c8e1944f1605f54d2f…
commit cd890730030de5c8e1944f1605f54d2fa022336e
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Tue Oct 6 15:20:13 2015 +0200
gtphub: debug log
http://cgit.osmocom.org/openbsc/commit/?id=498ba37a966745fbdd1b26c52843ec04…
commit 498ba37a966745fbdd1b26c52843ec0443d08e77
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Tue Oct 6 14:31:41 2015 +0200
gtphub: add GTP header validation
http://cgit.osmocom.org/openbsc/commit/?id=711b8ffd34e1b71829b0790f5aac04b0…
commit 711b8ffd34e1b71829b0790f5aac04b0bdf49210
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Mon Oct 5 18:14:35 2015 +0200
gtphub: add TEI map test
http://cgit.osmocom.org/openbsc/commit/?id=aa096403cf6c32eda3948e885cbf15ec…
commit aa096403cf6c32eda3948e885cbf15eccb68f1aa
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Mon Oct 5 17:38:15 2015 +0200
gtphub: add gtphub_test.c (empty)
http://cgit.osmocom.org/openbsc/commit/?id=d0f8a7ba4671eac183cd8e15ec80f308…
commit d0f8a7ba4671eac183cd8e15ec80f308d23308b0
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Tue Oct 6 13:16:07 2015 +0200
gtphub: add TEI map API.
http://cgit.osmocom.org/openbsc/commit/?id=b53041f34d09f881ff5095f58d80d245…
commit b53041f34d09f881ff5095f58d80d24529f1f551
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Tue Oct 6 13:06:56 2015 +0200
gtphub: populate API impl from test prog
http://cgit.osmocom.org/openbsc/commit/?id=1c6f9f07f3b37f804690e0efb00a050b…
commit 1c6f9f07f3b37f804690e0efb00a050bf00704a2
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Sat Oct 3 03:38:20 2015 +0200
gtphub: add skeletal gtphub.[hc]
Sponsored-by: On-Waves ehf
-----------------------------------------------------------------------
Summary of changes:
openbsc/include/openbsc/gtphub.h | 13 +++---
openbsc/src/gprs/gtphub.c | 96 +++++++++++++++++++++-----------------
openbsc/src/gprs/gtphub_main.c | 39 ++++++++--------
openbsc/tests/gtphub/gtphub_test.c | 28 +++--------
4 files changed, 85 insertions(+), 91 deletions(-)
hooks/post-receive
--
The OpenBSC GSM Base Station Controller (+MSC/HLR/SGSN)