aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/src/osmo-cscn/cscn_main.c
diff options
context:
space:
mode:
authorNeels Hofmeyr <nhofmeyr@sysmocom.de>2016-01-18 17:09:25 +0100
committerNeels Hofmeyr <nhofmeyr@sysmocom.de>2016-03-03 16:19:09 +0100
commita2c182df6dabce52fb6f8886b5aee5d71e18d247 (patch)
tree4ab7b0717ad541e75b3fcf0c9e62ff99f909547d /openbsc/src/osmo-cscn/cscn_main.c
parent070f673b12d8ca5939fdf272f32b5e45154c9067 (diff)
minor fixes
Diffstat (limited to 'openbsc/src/osmo-cscn/cscn_main.c')
-rw-r--r--openbsc/src/osmo-cscn/cscn_main.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/openbsc/src/osmo-cscn/cscn_main.c b/openbsc/src/osmo-cscn/cscn_main.c
index 1df541fbc..61470d819 100644
--- a/openbsc/src/osmo-cscn/cscn_main.c
+++ b/openbsc/src/osmo-cscn/cscn_main.c
@@ -261,9 +261,8 @@ static int rcvmsg_iu_cs(struct msgb *msg, struct gprs_ra_id *ra_id, /* FIXME gpr
DEBUGP(DIUCS, "got Iu-CS message\n");
DEBUGP(DIUCS, "Iu-CS message is %s\n",
osmo_hexdump(msg->data, msg->len));
- return -1;
- int gsm0408_rcvmsg_iucs(struct gsm_network *network, struct msgb *msg, uint8_t link_id)
- //return gsm0408_dispatch(struct gsm_subscriber_connection *conn, struct msgb *msg)
+ uint8_t link_id = 1; /* TODO proper link_id */
+ return gsm0408_rcvmsg_iucs(bsc_gsmnet, msg, link_id);
}