aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVadim Yanitskiy <axilirator@gmail.com>2018-08-04 01:16:52 +0700
committerHarald Welte <laforge@gnumonks.org>2018-08-05 11:33:20 +0000
commit1f9b0865ec5a4530b260ba70428e7770b45e60a6 (patch)
treeb50f035cd9d40f5e0523b1f15e29765bc99dfee1
parentd01b59409233af1c6d73ec85c98235e13f092c87 (diff)
RRLP: fix: actually init the RRLP signal handlers
-rw-r--r--src/osmo-msc/msc_main.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/osmo-msc/msc_main.c b/src/osmo-msc/msc_main.c
index b83691fd9..aa06fb924 100644
--- a/src/osmo-msc/msc_main.c
+++ b/src/osmo-msc/msc_main.c
@@ -681,6 +681,9 @@ TODO: we probably want some of the _net_ ctrl commands from bsc_base_ctrl_cmds_i
/* Set up A interface */
a_init(msc_network->a.sccp, msc_network);
+ /* Init RRLP handlers */
+ msc_rrlp_init();
+
if (msc_cmdline_config.daemonize) {
rc = osmo_daemonize();
if (rc < 0) {