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-16 15:32:32 +0100
commitfbd19b52ae2892f53b62f4f6d508679d9e69affe (patch)
tree4e15994a4aba1381949eabb9dbc1bab06bee7913 /openbsc/src/libmsc/msc_ifaces.c
parent25aa8fe597d2bfc321ead3d0b2a64fb9398b12eb (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;
+}