From acda6908adc2de44f34a266a694d50b59ad1f314 Mon Sep 17 00:00:00 2001 From: Holger Hans Peter Freyther Date: Fri, 23 Jul 2010 17:32:52 +0800 Subject: bssap: Move cipher mode complete to libosmocore --- openbsc/src/bssap.c | 31 ------------------------------- 1 file changed, 31 deletions(-) (limited to 'openbsc/src/bssap.c') diff --git a/openbsc/src/bssap.c b/openbsc/src/bssap.c index f63c7c96c..dfd70a591 100644 --- a/openbsc/src/bssap.c +++ b/openbsc/src/bssap.c @@ -781,37 +781,6 @@ struct msgb *bssmap_create_layer3(struct msgb *msg_l3) return msg; } -struct msgb *bssmap_create_cipher_complete(struct msgb *layer3) -{ - struct msgb *msg = msgb_alloc_headroom(BSSMAP_MSG_SIZE, BSSMAP_MSG_HEADROOM, - "cipher-complete"); - if (!msg) - return NULL; - - /* send response with BSS override for A5/1... cheating */ - msg->l3h = msgb_put(msg, 3); - msg->l3h[0] = BSSAP_MSG_BSS_MANAGEMENT; - msg->l3h[1] = 0xff; - msg->l3h[2] = BSS_MAP_MSG_CIPHER_MODE_COMPLETE; - - /* include layer3 in case we have at least two octets */ - if (layer3 && msgb_l3len(layer3) > 2) { - msg->l4h = msgb_put(msg, msgb_l3len(layer3) + 2); - msg->l4h[0] = GSM0808_IE_LAYER_3_MESSAGE_CONTENTS; - msg->l4h[1] = msgb_l3len(layer3); - memcpy(&msg->l4h[2], layer3->l3h, msgb_l3len(layer3)); - } - - /* and the optional BSS message */ - msg->l4h = msgb_put(msg, 2); - msg->l4h[0] = GSM0808_IE_CHOSEN_ENCR_ALG; - msg->l4h[1] = layer3->lchan->encr.alg_id; - - /* update the size */ - msg->l3h[1] = msgb_l3len(msg) - 2; - return msg; -} - static u_int8_t chan_mode_to_speech(struct gsm_lchan *lchan) { int mode = 0; -- cgit v1.2.3