aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/src/osmo-cscn
diff options
context:
space:
mode:
authorDaniel Willmann <dwillmann@sysmocom.de>2016-02-15 20:49:13 +0100
committerNeels Hofmeyr <nhofmeyr@sysmocom.de>2016-03-03 16:19:11 +0100
commit8cd32937da7bb2b4c0e0d37f24d6e993e7362e65 (patch)
treea349e17002ef733a422348869472466062e77552 /openbsc/src/osmo-cscn
parent377a9f5dea38b393fa534c882c43cf827ae069b8 (diff)
osmo-cscn: Add dummy function for RAB assignment response
Diffstat (limited to 'openbsc/src/osmo-cscn')
-rw-r--r--openbsc/src/osmo-cscn/cscn_main.c10
1 files changed, 9 insertions, 1 deletions
diff --git a/openbsc/src/osmo-cscn/cscn_main.c b/openbsc/src/osmo-cscn/cscn_main.c
index 6dc4fb7bf..17d5fddb7 100644
--- a/openbsc/src/osmo-cscn/cscn_main.c
+++ b/openbsc/src/osmo-cscn/cscn_main.c
@@ -308,6 +308,14 @@ static int rcvmsg_iu_cs(struct msgb *msg, struct gprs_ra_id *ra_id, /* FIXME gpr
return gsm0408_rcvmsg_iucs(cscn_network, msg, link_id);
}
+static int handle_rab_ass_resp(struct ue_conn_ctx *ctx, uint8_t rab_id, RANAP_RAB_SetupOrModifiedItemIEs_t *setup_ies)
+{
+ DEBUGP(DIUCS, "got Iu-CS RAB assignment response for RAB ID %u\n", rab_id);
+
+ /* TODO: Handle RAB assignment response for UE */
+ return 0;
+}
+
int main(int argc, char **argv)
{
@@ -443,7 +451,7 @@ TODO: we probably want some of the _net_ ctrl commands from bsc_base_ctrl_cmds_i
/* TODO: implement A-Interface and remove above legacy stuff. */
/* Set up Iu-CS */
- iu_init(tall_cscn_ctx, "127.0.0.1", 14001, cscn_network, rcvmsg_iu_cs);
+ iu_init(tall_cscn_ctx, "127.0.0.1", 14001, cscn_network, rcvmsg_iu_cs, handle_rab_ass_resp);
if (cscn_cmdline_config.daemonize) {
rc = osmo_daemonize();