2016-02-27 05:33:57 +01:00
|
|
|
/*
|
|
|
|
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 <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2018-03-07 08:57:04 +01:00
|
|
|
#include "cw/keys.h"
|
2016-03-03 20:46:20 +01:00
|
|
|
#include "cw/cw.h"
|
2016-03-15 00:31:31 +01:00
|
|
|
#include "cw/vendors.h"
|
2018-03-19 20:00:58 +01:00
|
|
|
|
2016-02-27 05:33:57 +01:00
|
|
|
|
|
|
|
|
2018-03-09 07:44:17 +01:00
|
|
|
int cisco_in_wtp_descriptor(struct cw_ElemHandler *eh, struct cw_ElemHandlerParams * params, uint8_t * data,
|
|
|
|
int len)
|
2016-02-27 05:33:57 +01:00
|
|
|
{
|
|
|
|
|
2018-03-06 03:08:14 +01:00
|
|
|
static struct cw_DescriptorSubelemDef allowed[] = {
|
2018-03-15 20:07:17 +01:00
|
|
|
{CW_VENDOR_ID_CISCO,CW_SUBELEM_WTP_HARDWARE_VERSION, CW_SKEY_HARDWARE, 1024,0},
|
|
|
|
{CW_VENDOR_ID_CISCO,CW_SUBELEM_WTP_SOFTWARE_VERSION, CW_SKEY_SOFTWARE, 1024.0},
|
|
|
|
{CW_VENDOR_ID_CISCO,CW_SUBELEM_WTP_BOOTLOADER_VERSION, CW_SKEY_BOOTLOADER, 1024.0},
|
|
|
|
{CW_VENDOR_ID_CISCO,CW_SUBELEM_WTP_OTHERSOFTWARE_VERSION, CW_SKEY_OTHER_SOFTWARE, 1024.0},
|
2016-03-15 00:31:31 +01:00
|
|
|
{0,0, NULL, 0,0}
|
|
|
|
};
|
2016-02-27 05:33:57 +01:00
|
|
|
|
2016-03-15 00:31:31 +01:00
|
|
|
|
2018-03-09 07:44:17 +01:00
|
|
|
return cw_read_wtp_descriptor_7(params->conn->remote_cfg, params->conn, eh, data, len, allowed);
|
2016-02-27 05:33:57 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|