aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/src/libmsc/msc_ifaces.c
diff options
context:
space:
mode:
authorNeels Hofmeyr <nhofmeyr@sysmocom.de>2016-09-06 20:08:58 +0200
committerNeels Hofmeyr <nhofmeyr@sysmocom.de>2017-03-09 18:34:16 +0100
commit54af81955d0ef6643f40642f27280ab5358765c0 (patch)
tree578f9ca5999409ef1efb6ca4bb5827c2d5a52e6d /openbsc/src/libmsc/msc_ifaces.c
parent194c2e4316f98acd7a1ab3eca1c60da805e55da8 (diff)
IuCS: cosmetic prep for msc_call_assignment()
Rename gsm48_cc_tx_call_proc() to gsm48_cc_tx_call_proc_and_assign() to mark the place where the A-interface will send a BSSAP Assignment Request / where the IuCS-interface will send a RAB Assignment Request. Add function msc_call_assignment() to decide between A-iface and IuCS assignment, to be implemented in subsequent commit. Change-Id: I0695e233d57d13658793b0e63bb7c3ff224909a0
Diffstat (limited to 'openbsc/src/libmsc/msc_ifaces.c')
-rw-r--r--openbsc/src/libmsc/msc_ifaces.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/openbsc/src/libmsc/msc_ifaces.c b/openbsc/src/libmsc/msc_ifaces.c
index 85e293107..fde8c3619 100644
--- a/openbsc/src/libmsc/msc_ifaces.c
+++ b/openbsc/src/libmsc/msc_ifaces.c
@@ -25,6 +25,7 @@
#include <openbsc/msc_ifaces.h>
#include <openbsc/iu.h>
#include <openbsc/gsm_subscriber.h>
+#include <openbsc/transaction.h>
#include "../../bscconfig.h"
@@ -100,3 +101,8 @@ int msc_tx_common_id(struct gsm_subscriber_connection *conn)
return -ENOTSUP;
#endif
}
+
+int msc_call_assignment(struct gsm_trans *trans)
+{
+ return 0;
+}