aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/include/openbsc/osmo_msc.h
diff options
context:
space:
mode:
authorNeels Hofmeyr <nhofmeyr@sysmocom.de>2016-05-10 13:37:59 +0200
committerNeels Hofmeyr <nhofmeyr@sysmocom.de>2016-11-12 15:50:37 +0100
commit5f7570a8d87edd5d82df49062ea5d412f5522ad4 (patch)
tree11da29e05ee457d6f6f73e6ab023ffed866be0dc /openbsc/include/openbsc/osmo_msc.h
parent2ee77ab28a462aa4fc09897c1800c0b2938e2e4b (diff)
msc_compl_l3(): publish in .h, tweak return value
Use new libmsc enum values for return val, to avoid dependency on libbsc headers. Make callable from other scopes: publish in osmo_msc.h and remove 'static' in osmo_msc.c Change-Id: If24007445899e9c75553a0dbf843ada3566b3380
Diffstat (limited to 'openbsc/include/openbsc/osmo_msc.h')
-rw-r--r--openbsc/include/openbsc/osmo_msc.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/openbsc/include/openbsc/osmo_msc.h b/openbsc/include/openbsc/osmo_msc.h
index beb3f5e4c..8ee22de27 100644
--- a/openbsc/include/openbsc/osmo_msc.h
+++ b/openbsc/include/openbsc/osmo_msc.h
@@ -5,7 +5,15 @@
#include "bsc_api.h"
+enum {
+ MSC_CONN_ACCEPT = 0,
+ MSC_CONN_REJECT = 1,
+};
+
struct bsc_api *msc_bsc_api();
+
+int msc_compl_l3(struct gsm_subscriber_connection *conn, struct msgb *msg,
+ uint16_t chosen_channel);
void msc_release_connection(struct gsm_subscriber_connection *conn);
#endif