aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/src/osmo-bsc_nat/bsc_nat_call_control.c
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <holger@moiji-mobile.com>2013-08-26 16:11:01 +0200
committerHolger Hans Peter Freyther <holger@moiji-mobile.com>2013-09-03 16:04:57 +0200
commit7e5cdb1da017feee6222a33760ad92fae932c453 (patch)
tree065d0d52bd96923b6674ca97da915449ef31b78d /openbsc/src/osmo-bsc_nat/bsc_nat_call_control.c
parent06173ca459c6ab814b80fa24df4fe1a9c3994b82 (diff)
nat: Begin to prepare to inspect Call-Control (CC) messages
Begin to inspect Call-Control messages and then hand off the entire connection to a different/local MSC. In the future this should work on a per transaction basis (the same applies to the USSD handling) but the first version will not do that.
Diffstat (limited to 'openbsc/src/osmo-bsc_nat/bsc_nat_call_control.c')
-rw-r--r--openbsc/src/osmo-bsc_nat/bsc_nat_call_control.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/openbsc/src/osmo-bsc_nat/bsc_nat_call_control.c b/openbsc/src/osmo-bsc_nat/bsc_nat_call_control.c
index b9a4bbae1..0328380bb 100644
--- a/openbsc/src/osmo-bsc_nat/bsc_nat_call_control.c
+++ b/openbsc/src/osmo-bsc_nat/bsc_nat_call_control.c
@@ -172,3 +172,9 @@ int bsc_cc_initialize(struct bsc_nat *nat)
return 0;
}
+
+int bsc_cc_check(struct nat_sccp_connection *con, struct bsc_nat_parsed *parsed,
+ struct msgb *msg)
+{
+ return 0;
+}