From 4460a959b965f5c6995082cdb2d8044dc13dbcb0 Mon Sep 17 00:00:00 2001 From: "7u83@mail.ru" <7u83@mail.ru@noemail.net> Date: Sat, 11 Apr 2015 01:11:09 +0000 Subject: [PATCH] Not needed. FossilOrigin-Name: f746cfb9b6e21eee2c9635a8c0ae416ddae371693a10168007f6eb294198c346 --- src/capwap/cwmsg_addelem_image_identifier.c | 29 ------------------- .../cwmsg_addelem_maximum_message_length.c | 10 ------- 2 files changed, 39 deletions(-) delete mode 100644 src/capwap/cwmsg_addelem_image_identifier.c delete mode 100644 src/capwap/cwmsg_addelem_maximum_message_length.c diff --git a/src/capwap/cwmsg_addelem_image_identifier.c b/src/capwap/cwmsg_addelem_image_identifier.c deleted file mode 100644 index 04a48e51..00000000 --- a/src/capwap/cwmsg_addelem_image_identifier.c +++ /dev/null @@ -1,29 +0,0 @@ -/* - This file is part of libcapwap. - - libcapwap is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - libcapwap is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with Foobar. If not, see . - -*/ - -#include "capwap.h" -#include "cwmsg.h" - -void cwmsg_addelem_image_identifier(struct cwmsg *cwmsg,uint32_t vendor_id,uint8_t *img, int len) -{ -// uint32_t net_vendor_id = htonl(vendor_id); - - cwmsg_vaddelem(cwmsg,CW_ELEM_IMAGE_IDENTIFIER,img,len,NULL); -// cwmsg_vaddelem(cwmsg,CWMSGELEM_IMAGE_IDENTIFIER,2,&net_vendor_id,sizeof(net_vendor_id),img,len); -} - diff --git a/src/capwap/cwmsg_addelem_maximum_message_length.c b/src/capwap/cwmsg_addelem_maximum_message_length.c deleted file mode 100644 index c097a6bc..00000000 --- a/src/capwap/cwmsg_addelem_maximum_message_length.c +++ /dev/null @@ -1,10 +0,0 @@ - -#include "capwap.h" - -void cwmsg_addelem_maximum_message_length(struct cwmsg *msg,int len) -{ - uint8_t c[2]; - *((uint16_t*)c)= htons(len); - cwmsg_addelem(msg,CWMSGELEM_MAXIMUM_MESSAGE_LENGTH,c,4); -} -