aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/include/openbsc/common_cs.h
diff options
context:
space:
mode:
Diffstat (limited to 'openbsc/include/openbsc/common_cs.h')
-rw-r--r--openbsc/include/openbsc/common_cs.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/openbsc/include/openbsc/common_cs.h b/openbsc/include/openbsc/common_cs.h
index 612d754c9..8549a837b 100644
--- a/openbsc/include/openbsc/common_cs.h
+++ b/openbsc/include/openbsc/common_cs.h
@@ -1,6 +1,13 @@
#pragma once
+#include <stdint.h>
+
struct msgb;
struct gsm_network;
typedef int (*mncc_recv_cb_t)(struct gsm_network *, struct msgb *);
+
+struct gsm_network *gsm_network_init(void *ctx,
+ uint16_t country_code,
+ uint16_t network_code,
+ mncc_recv_cb_t mncc_recv);