print debug statement in case of HANDOVER COMPLETE or HANDOVER FAILED

This commit is contained in:
Harald Welte 2009-11-29 20:02:20 +01:00
parent 3c7dc6ed50
commit ccd5a8892d
1 changed files with 8 additions and 0 deletions

View File

@ -1596,6 +1596,14 @@ static int gsm0408_rcv_rr(struct msgb *msg)
DEBUGP(DRR, "CIPHERING MODE COMPLETE\n");
/* FIXME: check for MI (if any) */
break;
case GSM48_MT_RR_HANDO_COMPL:
DEBUGP(DRR, "HANDOVER COMPLETE\n");
/* FIXME: release old channel */
break;
case GSM48_MT_RR_HANDO_FAIL:
DEBUGP(DRR, "HANDOVER FAILED\n");
/* FIXME: release allocated new channel */
break;
default:
fprintf(stderr, "Unimplemented GSM 04.08 RR msg type 0x%02x\n",
gh->msg_type);