aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/src/osmo-cscn
diff options
context:
space:
mode:
authorNeels Hofmeyr <nhofmeyr@sysmocom.de>2016-03-21 22:28:22 +0100
committerNeels Hofmeyr <nhofmeyr@sysmocom.de>2016-03-22 01:12:26 +0100
commit8e5c63f032398ad45052b538890071919de8a20e (patch)
tree6e41449a31efcd21c4bd6dabf30f93f4e4f16a15 /openbsc/src/osmo-cscn
parent2cd36e87ae3e09e33225ac3b1ef4ca649f21f2f0 (diff)
cosmetic: whitespace, comment, rename static func rx_iu_event()
Diffstat (limited to 'openbsc/src/osmo-cscn')
-rw-r--r--openbsc/src/osmo-cscn/cscn_main.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/openbsc/src/osmo-cscn/cscn_main.c b/openbsc/src/osmo-cscn/cscn_main.c
index 88963651d..80b98731b 100644
--- a/openbsc/src/osmo-cscn/cscn_main.c
+++ b/openbsc/src/osmo-cscn/cscn_main.c
@@ -322,8 +322,8 @@ static int rcvmsg_iu_cs(struct msgb *msg, struct gprs_ra_id *ra_id, /* FIXME gpr
return gsm0408_rcvmsg_iucs(cscn_network, msg);
}
-static int handle_iu_event(struct ue_conn_ctx *ctx, enum iu_event_type type,
- void *data)
+static int rx_iu_event(struct ue_conn_ctx *ctx, enum iu_event_type type,
+ void *data)
{
DEBUGP(DIUCS, "got Iu-CS event %u\n", type);
@@ -485,7 +485,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, rcvmsg_iu_cs, handle_iu_event);
+ iu_init(tall_cscn_ctx, "127.0.0.1", 14001, rcvmsg_iu_cs, rx_iu_event);
if (cscn_cmdline_config.daemonize) {
rc = osmo_daemonize();