aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2010-05-30 20:28:22 +0200
committerHarald Welte <laforge@gnumonks.org>2010-05-30 20:28:22 +0200
commitb12aa4b1eebe1024a0cf09553a8448420b707c89 (patch)
tree0887e75dc8a8c06d51a46f638d5c9816a2c55be8
parentd75d71e95c796bf9847e39753b716ad9ff56e237 (diff)
[GPRS] GMM: Add some FIXME's to the code
-rw-r--r--openbsc/src/gprs/gprs_gmm.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/openbsc/src/gprs/gprs_gmm.c b/openbsc/src/gprs/gprs_gmm.c
index 609f141a3..ee3ea2439 100644
--- a/openbsc/src/gprs/gprs_gmm.c
+++ b/openbsc/src/gprs/gprs_gmm.c
@@ -917,6 +917,7 @@ static int gsm0408_rcv_gsm(struct sgsn_mm_ctx *mmctx, struct msgb *msg)
if (!mmctx) {
LOGP(DMM, LOGL_NOTICE, "Cannot handle SM for unknown MM CTX\n");
+ /* FIXME: return SM / MM STATUS */
return -EINVAL;
}
@@ -935,10 +936,12 @@ static int gsm0408_rcv_gsm(struct sgsn_mm_ctx *mmctx, struct msgb *msg)
case GSM48_MT_GSM_DEACT_AA_PDP_REQ:
DEBUGP(DMM, "Unimplemented GSM 04.08 GSM msg type 0x%02x\n",
gh->msg_type);
+ /* FIXME: return SM / MM STATUS */
break;
default:
DEBUGP(DMM, "Unknown GSM 04.08 GSM msg type 0x%02x\n",
gh->msg_type);
+ /* FIXME: return SM / MM STATUS */
break;
}