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/auth_tests_wip has been updated
discards 7d8ea8bb5abad91c1d5aeb8d447fd92fe6bcb652 (commit)
discards 131b6f2ee5ad820fd0a3c715b26eacd71673d509 (commit)
discards 95b8adbd5ea2010b24807cdc89895bbab0f6bf0e (commit)
discards bd7dd6ba922bf87d9a2a5e8b8a499e0dce6f5b3d (commit)
discards 1f2c4ba3cefeef9dede5fae19de88fa0f896574b (commit)
discards 0bdd1fda17a36567ea9b1b3073adedea4c2f5780 (commit)
discards 23b1bc36045c2bbdb3cb6ddab0e7ee87b2fcbfcc (commit)
via 7b97f901f0894bcc75f696a4e67a8bb4f90a9541 (commit)
via fbf5e6f94f67694f03142e51773d3e50b1746a9b (commit)
via 9f81ebad8c2a618a87b1e521a839d54e22eecd73 (commit)
via 41d661d2ea91df076b165be9fa5fcfe952f67130 (commit)
via 4631b5185cfcae8435f35c0cd56b282609a0952e (commit)
via a7732be36d264d0775da82e6c78ec0183314653a (commit)
via 2c6d4883d6beca6b252676112fce884389ebb57e (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 (7d8ea8bb5abad91c1d5aeb8d447fd92fe6bcb652)
\
N -- N -- N (7b97f901f0894bcc75f696a4e67a8bb4f90a9541)
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=7b97f901f0894bcc75f696a4e67a8bb4…
commit 7b97f901f0894bcc75f696a4e67a8bb4f90a9541
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Sat Mar 26 14:01:57 2016 +0100
Fix MM Auth: zero-initialize auth tuple before first use
Make sure a new auth tuple is initialized after
db_get_lastauthtuple_for_subscr() returns an error, i.e. if no tuple is present
for the subscriber yet.
Before this patch, the first key_seq depended on the typically uninitialized
value that was present in auth tuple's key_seq upon calling
auth_get_tuple_for_subscr().
The very first key_seq used for a new subscriber will now always be 0. Before,
it used to be mostly 1 ("(0 + 1) % 7"), but depended on whether the key_seq was
indeed initialized with 0, actually by random.
http://cgit.osmocom.org/openbsc/commit/?id=fbf5e6f94f67694f03142e51773d3e50…
commit fbf5e6f94f67694f03142e51773d3e50b1746a9b
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Sat Mar 26 13:44:38 2016 +0100
Fix MM Auth: disallow key_seq mismatch
In auth_get_tuple_for_subscr(), add missing condition to match incoming
key_seq with stored key_seq, so that re-authentication is requested for
mismatching key_seqs.
Add test for this issue.
http://cgit.osmocom.org/openbsc/commit/?id=9f81ebad8c2a618a87b1e521a839d54e…
commit 9f81ebad8c2a618a87b1e521a839d54e22eecd73
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Sat Mar 26 01:41:08 2016 +0100
MM Auth: return AUTH_NOT_AVAIL instead of hardcoded zero
AUTH_NOT_AVAIL == 0, so this is no functional change.
http://cgit.osmocom.org/openbsc/commit/?id=41d661d2ea91df076b165be9fa5fcfe9…
commit 41d661d2ea91df076b165be9fa5fcfe952f67130
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Sat Mar 26 01:39:47 2016 +0100
MM Auth: introduce AUTH_ERROR constant.
Instead of using hardcoded -1 for errors, include -1 in the enum auth_action
type; apply its use.
In the mm_auth test, the string output changes from '(internal error)' to
'AUTH_ERROR', since now the proper enum value is used in auth_action_names[].
http://cgit.osmocom.org/openbsc/commit/?id=4631b5185cfcae8435f35c0cd56b2826…
commit 4631b5185cfcae8435f35c0cd56b282609a0952e
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Sat Mar 26 12:10:48 2016 +0100
MM Auth test: add test to re-use existing auth
http://cgit.osmocom.org/openbsc/commit/?id=a7732be36d264d0775da82e6c78ec018…
commit a7732be36d264d0775da82e6c78ec0183314653a
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Sat Mar 26 01:26:09 2016 +0100
MM Auth test: add two tests for AUTH_THEN_CIPH
Test two situations for AUTH_DO_AUTH_THEN_CIPH:
- when no auth tuple is available
- when the key sequence from LU is marked invalid
Add convenience auth tuple comparison function using stringification.
http://cgit.osmocom.org/openbsc/commit/?id=2c6d4883d6beca6b252676112fce8843…
commit 2c6d4883d6beca6b252676112fce884389ebb57e
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Sat Mar 26 01:21:00 2016 +0100
Add MM Auth test; add auth_action_str() function
Add basic MM Authentication test setup, with fake DB access and RAND_bytes().
So far implement simple tests for IO error during DB access and missing auth
entry.
To print the auth action during tests, add struct auth_action_names and
auth_action_str() inline function in auth.[hc].
-----------------------------------------------------------------------
Summary of changes:
openbsc/include/openbsc/auth.h | 17 ++++-------------
openbsc/src/libmsc/auth.c | 9 +++++++++
2 files changed, 13 insertions(+), 13 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/auth_tests_wip has been updated
discards 20bbcd096de9156fcbfc61950cde46cd20236ec3 (commit)
discards 48123874f7877de5e163f83593aa193c2fc6ad96 (commit)
discards 36f9af92b0d94126efe38c9dfc786ea155516356 (commit)
discards b4eda53768ebefbad6bfe5231e562b77f233fc2d (commit)
discards 1a92af94a272e6f52508e84820f248069b9a6acc (commit)
discards 51f510ab12e76ad07ccaf9ac42ab6309c96528fc (commit)
via 7d8ea8bb5abad91c1d5aeb8d447fd92fe6bcb652 (commit)
via 131b6f2ee5ad820fd0a3c715b26eacd71673d509 (commit)
via 95b8adbd5ea2010b24807cdc89895bbab0f6bf0e (commit)
via bd7dd6ba922bf87d9a2a5e8b8a499e0dce6f5b3d (commit)
via 1f2c4ba3cefeef9dede5fae19de88fa0f896574b (commit)
via 0bdd1fda17a36567ea9b1b3073adedea4c2f5780 (commit)
via 23b1bc36045c2bbdb3cb6ddab0e7ee87b2fcbfcc (commit)
via 56ea30ff3f9f98a4903d060196b185ce124d7eaa (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 (20bbcd096de9156fcbfc61950cde46cd20236ec3)
\
N -- N -- N (7d8ea8bb5abad91c1d5aeb8d447fd92fe6bcb652)
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=7d8ea8bb5abad91c1d5aeb8d447fd92f…
commit 7d8ea8bb5abad91c1d5aeb8d447fd92fe6bcb652
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Sat Mar 26 14:01:57 2016 +0100
Fix MM Auth: zero-initialize auth tuple before first use
Make sure a new auth tuple is initialized after
db_get_lastauthtuple_for_subscr() returns an error.
In effect, the first key_seq used no longer depends on how the auth tuple was
initialized before the call. Before this patch, the first key_seq depended on
the value was present in auth tuple's key_seq.
http://cgit.osmocom.org/openbsc/commit/?id=131b6f2ee5ad820fd0a3c715b26eacd7…
commit 131b6f2ee5ad820fd0a3c715b26eacd71673d509
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Sat Mar 26 13:44:38 2016 +0100
Fix MM Auth: disallow key_seq mismatch
In auth_get_tuple_for_subscr(), add missing condition to match incoming
key_seq with stored key_seq, so that re-authentication is requested for
mismatching key_seqs.
Add test for this issue.
http://cgit.osmocom.org/openbsc/commit/?id=95b8adbd5ea2010b24807cdc89895bba…
commit 95b8adbd5ea2010b24807cdc89895bbab0f6bf0e
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Sat Mar 26 01:41:08 2016 +0100
MM Auth: return AUTH_NOT_AVAIL instead of hardcoded zero
AUTH_NOT_AVAIL == 0, so this is no functional change.
http://cgit.osmocom.org/openbsc/commit/?id=bd7dd6ba922bf87d9a2a5e8b8a499e0d…
commit bd7dd6ba922bf87d9a2a5e8b8a499e0dce6f5b3d
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Sat Mar 26 01:39:47 2016 +0100
MM Auth: introduce AUTH_ERROR constant.
Instead of using hardcoded -1 for errors, include -1 in the enum auth_action
type; apply its use.
In effect remove a compiler warning recently introduced in auth_action_str()
about int value not represented in enum definition.
In the mm_auth test, the string output changes from '(internal error)' to
'AUTH_ERROR'.
http://cgit.osmocom.org/openbsc/commit/?id=1f2c4ba3cefeef9dede5fae19de88fa0…
commit 1f2c4ba3cefeef9dede5fae19de88fa0f896574b
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Sat Mar 26 12:10:48 2016 +0100
MM Auth test: add test to re-use existing auth
http://cgit.osmocom.org/openbsc/commit/?id=0bdd1fda17a36567ea9b1b3073adedea…
commit 0bdd1fda17a36567ea9b1b3073adedea4c2f5780
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Sat Mar 26 01:26:09 2016 +0100
MM Auth test: add two tests for AUTH_THEN_CIPH
Test two situations for AUTH_DO_AUTH_THEN_CIPH:
- when no auth tuple is available
- when the key sequence from LU is marked invalid
Add convenience auth tuple comparison function using stringification.
http://cgit.osmocom.org/openbsc/commit/?id=23b1bc36045c2bbdb3cb6ddab0e7ee87…
commit 23b1bc36045c2bbdb3cb6ddab0e7ee87b2fcbfcc
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Sat Mar 26 01:21:00 2016 +0100
Add MM Auth test; add auth_action_str() function
Add basic MM Authentication test setup, with fake DB access and RAND_bytes().
So far implement simple tests for IO error during DB access and missing auth
entry.
To print the auth action during tests, implement auth_action_str() inline
function.
-----------------------------------------------------------------------
Summary of changes:
openbsc/include/openbsc/auth.h | 5 +-
openbsc/src/libmsc/auth.c | 12 +++-
openbsc/tests/mm_auth/mm_auth_test.c | 103 ++++++++++++++++++++++------------
openbsc/tests/mm_auth/mm_auth_test.ok | 18 +++++-
4 files changed, 98 insertions(+), 40 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/cscn has been updated
discards d0df2fce86e79f10dbaed147f6b92b1dc6670f1e (commit)
discards 6681f78ae1ac2a39560bb2900f520606217cb18c (commit)
discards 6cdd53e090e99f60fa68b461a3dfe8fb38ab1b53 (commit)
discards a4ae346157c9e5d8dc8157eb3a63a81648c42610 (commit)
discards 6ab00f824c5cd44737fa361143a3ae93912fa244 (commit)
via 6f7750b134e6efae4bab08006c2a8a483f942166 (commit)
via 5672d0b02f3a6ae8c19a019ab2997db2bb25c4b9 (commit)
via 8652005807d3f8cf9d24d880d9161655358fbb6a (commit)
via 436c207b710f1ae3ab51f19378be44f8f662b749 (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 (d0df2fce86e79f10dbaed147f6b92b1dc6670f1e)
\
N -- N -- N (6f7750b134e6efae4bab08006c2a8a483f942166)
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=6f7750b134e6efae4bab08006c2a8a48…
commit 6f7750b134e6efae4bab08006c2a8a483f942166
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Tue Mar 22 19:25:58 2016 +0100
hack for testing: hardcoded LAC on LU Accept
http://cgit.osmocom.org/openbsc/commit/?id=5672d0b02f3a6ae8c19a019ab2997db2…
commit 5672d0b02f3a6ae8c19a019ab2997db2bb25c4b9
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Tue Mar 22 19:26:52 2016 +0100
Add registry of RNC-Ids in LACs
Introduce struct gsm_rnc and store in a list. Make it so that the code can be
used from both MSC and GPRS.
Add VTY commands 'lac <id>' and 'rnc <id>', which populate above list.
Semantics: when an RNC registers with the MSC or SGSN, it tells us its RNC Id.
During paging, we need to find an RNC for a given LAC. The association of RNCs
to a particular LAC needs to be configured on the CN side.
http://cgit.osmocom.org/openbsc/commit/?id=8652005807d3f8cf9d24d880d9161655…
commit 8652005807d3f8cf9d24d880d9161655358fbb6a
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Wed Mar 23 18:19:38 2016 +0100
cosmetic: comments, debug log, msgb alloc name
http://cgit.osmocom.org/openbsc/commit/?id=436c207b710f1ae3ab51f19378be44f8…
commit 436c207b710f1ae3ab51f19378be44f8f662b749
Author: Neels Hofmeyr <nhofmeyr(a)sysmocom.de>
Date: Wed Mar 23 18:20:12 2016 +0100
mscsplit: rewire MSC gsm0808_submit_dtap() to msc_tx_dtap()
-----------------------------------------------------------------------
Summary of changes:
openbsc/doc/examples/osmo-cscn/osmo-cscn.cfg | 49 ++++++++++++
openbsc/include/openbsc/iu.h | 4 +-
openbsc/include/openbsc/vty.h | 1 +
openbsc/src/libcommon/Makefile.am | 3 +-
openbsc/src/libcommon/common_vty.c | 1 +
openbsc/src/libcommon/lac_vty.c | 115 +++++++++++++++++++++++++++
openbsc/src/libiu/iu.c | 7 ++
openbsc/src/libmsc/cscn_vty.c | 22 +----
openbsc/src/osmo-cscn/cscn_main.c | 1 +
9 files changed, 183 insertions(+), 20 deletions(-)
create mode 100644 openbsc/doc/examples/osmo-cscn/osmo-cscn.cfg
create mode 100644 openbsc/src/libcommon/lac_vty.c
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, max/nat has been updated
via aef2acfe6abc774073486db6d22d0afcb1db0a15 (commit)
from 977f595e2c8f0594dbfae8df9ae3247dc0a23122 (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=aef2acfe6abc774073486db6d22d0afc…
commit aef2acfe6abc774073486db6d22d0afcb1db0a15
Author: Max <msuraev(a)sysmocom.de>
Date: Tue Mar 29 10:07:45 2016 +0200
Add 'show bsc-config' command
It will display all configured BSC: both from included file and vty.
-----------------------------------------------------------------------
Summary of changes:
openbsc/src/osmo-bsc_nat/bsc_nat_vty.c | 7 +++++++
1 file changed, 7 insertions(+)
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 "OpenBTS' transceiver retro-fit".
The tag, fairwaves/0.1.9-1 has been created
at b54d46e670d05174109e21510fee3ada5e18eb51 (commit)
- Log -----------------------------------------------------------------
commit b54d46e670d05174109e21510fee3ada5e18eb51
Author: Kirill Zakharenko <earwin(a)gmail.com>
Date: Thu Jul 23 02:25:25 2015 +0200
Bumped version to 0.1.9~1
-----------------------------------------------------------------------
hooks/post-receive
--
OpenBTS' transceiver retro-fit
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 "OpenBTS' transceiver retro-fit".
The tag, fairwaves/0.1.9 has been updated
to bb8d46adaa9b8571be30c6d1c75c6aadd4f0b43d (commit)
from bb8d46adaa9b8571be30c6d1c75c6aadd4f0b43d
- Log -----------------------------------------------------------------
commit bb8d46adaa9b8571be30c6d1c75c6aadd4f0b43d
Author: Kirill Zakharenko <earwin(a)gmail.com>
Date: Thu Jul 16 16:45:36 2015 +0200
bumped version to 0.1.9
-----------------------------------------------------------------------
hooks/post-receive
--
OpenBTS' transceiver retro-fit
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 "OpenBTS' transceiver retro-fit".
The tag, fairwaves/0.1.10-1 has been created
at a336f254dc2e4949bb54ebb45b2d7f41df4c69cd (commit)
- Log -----------------------------------------------------------------
commit a336f254dc2e4949bb54ebb45b2d7f41df4c69cd
Author: Kirill Zakharenko <earwin(a)gmail.com>
Date: Mon Mar 28 11:46:20 2016 +0200
bump version to 0.1.10~1
-----------------------------------------------------------------------
hooks/post-receive
--
OpenBTS' transceiver retro-fit
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 "OpenBTS' transceiver retro-fit".
The branch, fairwaves/rach-filler has been updated
via a336f254dc2e4949bb54ebb45b2d7f41df4c69cd (commit)
via 43fa3cab67b9a180954f1e3c7025ca864271fcf8 (commit)
from aa65b020e7580d95d2879d16a054a9d1b145cd0d (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-trx/commit/?id=a336f254dc2e4949bb54ebb45b2d7f4…
commit a336f254dc2e4949bb54ebb45b2d7f41df4c69cd
Author: Kirill Zakharenko <earwin(a)gmail.com>
Date: Mon Mar 28 11:46:20 2016 +0200
bump version to 0.1.10~1
http://cgit.osmocom.org/osmo-trx/commit/?id=43fa3cab67b9a180954f1e3c7025ca8…
commit 43fa3cab67b9a180954f1e3c7025ca864271fcf8
Author: Kirill Zakharenko <earwin(a)gmail.com>
Date: Mon Mar 28 11:34:23 2016 +0200
debian: compile for atom arch with SSE3 optimizations
-----------------------------------------------------------------------
Summary of changes:
debian/changelog | 7 +++++++
debian/rules | 3 +++
2 files changed, 10 insertions(+)
hooks/post-receive
--
OpenBTS' transceiver retro-fit
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 "MNCC <-> SIP bridge".
The branch, zecke/mt-mncc-call has been updated
discards 6288a7172809dc62debada14c3274aa1449f2105 (commit)
via b8e802851dd586b3e08799886cf4b144463b970f (commit)
via a4970327f2e050f697dd4e75fa1931902aa6c1de (commit)
via 00a43e20ab4e16ac3822d204d98f7d8e2f11b7c2 (commit)
via 916348b7dcbd3f5fb4b672c3e18f6dd092cea146 (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 (6288a7172809dc62debada14c3274aa1449f2105)
\
N -- N -- N (b8e802851dd586b3e08799886cf4b144463b970f)
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-sip-connector/commit/?id=b8e802851dd586b3e0879…
commit b8e802851dd586b3e08799886cf4b144463b970f
Author: Holger Hans Peter Freyther <holger(a)moiji-mobile.com>
Date: Sun Mar 27 16:49:23 2016 +0200
mncc: Handle REJ_IND from the NITB
In case a call can not be connected we will receive a REJ.IND.
Inform the other leg and release the call.
http://cgit.osmocom.org/osmo-sip-connector/commit/?id=a4970327f2e050f697dd4…
commit a4970327f2e050f697dd4e75fa1931902aa6c1de
Author: Holger Hans Peter Freyther <holger(a)moiji-mobile.com>
Date: Sun Mar 27 16:45:35 2016 +0200
mncc: Stop timer when starting the release process
http://cgit.osmocom.org/osmo-sip-connector/commit/?id=00a43e20ab4e16ac3822d…
commit 00a43e20ab4e16ac3822d204d98f7d8e2f11b7c2
Author: Holger Hans Peter Freyther <holger(a)moiji-mobile.com>
Date: Sun Mar 27 16:43:45 2016 +0200
mncc: On timeout release the other leg as well
In case we don't receive the response we had expected let us
take down the other part of the call as well.
http://cgit.osmocom.org/osmo-sip-connector/commit/?id=916348b7dcbd3f5fb4b67…
commit 916348b7dcbd3f5fb4b672c3e18f6dd092cea146
Author: Holger Hans Peter Freyther <holger(a)moiji-mobile.com>
Date: Sun Mar 27 17:02:39 2016 +0200
mncc: Begin to implement MT call handling for SIP->MNCC
Initiate the setup request that should result in the call getting
all the way to the connected state at some point in time. The device
I test with sadly rejects the call too soon.
-----------------------------------------------------------------------
Summary of changes:
doc/examples/osmo-sip-connector.cfg | 7 ++-----
src/mncc.c | 31 ++++++++++++++++++++++++++++++-
2 files changed, 32 insertions(+), 6 deletions(-)
hooks/post-receive
--
MNCC <-> SIP bridge
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 "MNCC <-> SIP bridge".
The branch, zecke/mt-mncc-call has been created
at 6288a7172809dc62debada14c3274aa1449f2105 (commit)
- Log -----------------------------------------------------------------
http://cgit.osmocom.org/osmo-sip-connector/commit/?id=6288a7172809dc62debad…
commit 6288a7172809dc62debada14c3274aa1449f2105
Author: Holger Hans Peter Freyther <holger(a)moiji-mobile.com>
Date: Sun Mar 27 15:56:46 2016 +0200
WIP..
-----------------------------------------------------------------------
hooks/post-receive
--
MNCC <-> SIP bridge