2014-08-15 01:37:00 +02: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/>.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#include "capwap.h"
|
2015-03-19 21:51:28 +01:00
|
|
|
#include "capwap_80211.h"
|
2014-08-15 01:37:00 +02:00
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include "wtpinfo.h"
|
|
|
|
|
|
|
|
#include "cw_util.h"
|
|
|
|
#include "cw_log.h"
|
|
|
|
|
|
|
|
|
|
|
|
static int process_elem(void *w,int type,uint8_t* msgelem,int len)
|
|
|
|
{
|
|
|
|
struct wtpinfo * wtpinfo = (struct wtpinfo*)w;
|
2015-03-28 12:51:34 +01:00
|
|
|
cw_dbg(DBG_ELEM,"Process conf status req msgelem, type=%d (%s), len=%d",type,cw_msgelemtostr(type),len);
|
|
|
|
|
|
|
|
cw_dbg_dmp(DBG_ELEM_DMP,msgelem,len,"Dump for msgelem ...");
|
2014-08-15 01:37:00 +02:00
|
|
|
|
|
|
|
|
|
|
|
if (wtpinfo_readelem_ac_name(wtpinfo,type,msgelem,len))
|
|
|
|
return 1;
|
|
|
|
|
2014-08-15 02:24:38 +02:00
|
|
|
if (cw_readelem_wtp_reboot_statistics(&wtpinfo->reboot_statistics,type,msgelem,len))
|
|
|
|
return 1;
|
2014-08-15 01:37:00 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
if (wtpinfo_readelem_location_data(wtpinfo,type,msgelem,len))
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
if (wtpinfo_readelem_wtp_board_data(wtpinfo,type,msgelem,len))
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
if (wtpinfo_readelem_wtp_descriptor(wtpinfo,type,msgelem,len))
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
if (wtpinfo_readelem_wtp_name(wtpinfo,type,msgelem,len))
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
if (wtpinfo_readelem_session_id(wtpinfo,type,msgelem,len))
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
if (wtpinfo_readelem_wtp_frame_tunnel_mode(wtpinfo,type,msgelem,len))
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
if (wtpinfo_readelem_wtp_mac_type(wtpinfo,type,msgelem,len))
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
if (wtpinfo_readelem_wtp_radio_info(wtpinfo,type,msgelem,len))
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
if (wtpinfo_readelem_ecn_support(wtpinfo,type,msgelem,len))
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
if (wtpinfo_readelem_cw_local_ip_addr(wtpinfo,type,msgelem,len))
|
|
|
|
return 1;
|
|
|
|
*/
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void process_conf_status_request(struct wtpinfo * wtpinfo, uint8_t * msg, int len)
|
|
|
|
{
|
|
|
|
cw_foreach_msgelem(msg,len,process_elem,(void*)wtpinfo);
|
|
|
|
}
|
|
|
|
|