aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/src/osmo-cscn/cscn_main.c
diff options
context:
space:
mode:
authorNeels Hofmeyr <nhofmeyr@sysmocom.de>2016-01-28 15:04:56 +0100
committerNeels Hofmeyr <nhofmeyr@sysmocom.de>2016-03-03 16:19:09 +0100
commitb6769b99deb471dc7cb5d26b4d145e42ed7478e1 (patch)
treee4c64ac7b1dfb92b7c78b3137900b89599f5db8e /openbsc/src/osmo-cscn/cscn_main.c
parent39daffd7a5602816bd10130e1c93f213ab46315b (diff)
cosmetics: link_id=42, s/Iu-CS/IuCS, debug logs.
Until I get the proper link id from the SUA SAP, make sure we recognise it as hardcoded by setting it to 42.
Diffstat (limited to 'openbsc/src/osmo-cscn/cscn_main.c')
-rw-r--r--openbsc/src/osmo-cscn/cscn_main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/openbsc/src/osmo-cscn/cscn_main.c b/openbsc/src/osmo-cscn/cscn_main.c
index 5aa327523..ca1c48f48 100644
--- a/openbsc/src/osmo-cscn/cscn_main.c
+++ b/openbsc/src/osmo-cscn/cscn_main.c
@@ -263,7 +263,7 @@ 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));
- uint8_t link_id = 1; /* TODO proper link_id */
+ uint8_t link_id = 42; /* TODO proper link_id */
return gsm0408_rcvmsg_iucs(bsc_gsmnet, msg, link_id);
}