aboutsummaryrefslogtreecommitdiffstats
path: root/src/osmo-msc/msc_main.c
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2018-10-08 23:40:12 +0200
committerHarald Welte <laforge@gnumonks.org>2018-10-28 14:37:01 +0100
commit7d04de456db6be4e13bf1902ed42e40025c3b0b2 (patch)
treefc5a54b8d796703c1f33cecca0099a2333e11e02 /src/osmo-msc/msc_main.c
parentf6400737f9f6f7d326030862fd6cbc7cab25b8f0 (diff)
WIP: SGs Interface initial codelaforge/sgsap
Diffstat (limited to 'src/osmo-msc/msc_main.c')
-rw-r--r--src/osmo-msc/msc_main.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/osmo-msc/msc_main.c b/src/osmo-msc/msc_main.c
index 53d27d373..e78ad5c3c 100644
--- a/src/osmo-msc/msc_main.c
+++ b/src/osmo-msc/msc_main.c
@@ -493,6 +493,12 @@ static const struct log_info_cat msc_default_categories[] = {
.description = "BSSAP Protocol (A Interface)",
.enabled = 1, .loglevel = LOGL_NOTICE,
},
+ [DSGS] = {
+ .name = "DSGS",
+ .description = "SGs Interface (SGsAP)",
+ .enabled = 1, .loglevel = LOGL_NOTICE,
+ },
+
};
@@ -517,6 +523,8 @@ extern void *tall_gsms_ctx;
extern void *tall_call_ctx;
extern void *tall_trans_ctx;
+extern void *sgs_init(void *ctx);
+
int main(int argc, char **argv)
{
int rc;
@@ -570,6 +578,7 @@ int main(int argc, char **argv)
if (smpp_openbsc_alloc_init(tall_msc_ctx) < 0)
return -1;
#endif
+ sgs_init(tall_msc_ctx);
rc = vty_read_config_file(msc_cmdline_config.config_file, NULL);
if (rc < 0) {