aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/src
diff options
context:
space:
mode:
authorDaniel Willmann <dwillmann@sysmocom.de>2016-02-18 15:50:30 +0100
committerNeels Hofmeyr <nhofmeyr@sysmocom.de>2016-03-03 16:19:11 +0100
commite3407f8884d45b3e4eae2f9d9a62c48f9b148abb (patch)
tree83a991bdc22a00218990b603016b3586832989fa /openbsc/src
parent7d1b6b1c79acf9ef00d1f5f35092d12cbf0f3f7f (diff)
libiu: Indicate in log where we don't handle a specific message
Diffstat (limited to 'openbsc/src')
-rw-r--r--openbsc/src/libiu/iu.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/openbsc/src/libiu/iu.c b/openbsc/src/libiu/iu.c
index 5431fa942..e7661e5e0 100644
--- a/openbsc/src/libiu/iu.c
+++ b/openbsc/src/libiu/iu.c
@@ -312,10 +312,12 @@ static void cn_ranap_handle_co(void *ctx, ranap_message *message)
switch (message->procedureCode) {
case RANAP_ProcedureCode_id_SecurityModeControl:
/* Security Mode Complete */
+ LOGP(DRANAP, LOGL_NOTICE, "FIXME: Handle security mode complete\n");
rc = -1;
break;
case RANAP_ProcedureCode_id_Iu_Release:
/* Iu Release Complete */
+ LOGP(DRANAP, LOGL_NOTICE, "FIXME: Handle Iu release complete\n");
rc = -1;
break;
default: