Initial commit

FossilOrigin-Name: d8fd5cf25792800219919b4b81cf4d7153d2e08fe5e8b218f0f82f3747a51a31
This commit is contained in:
7u83@mail.ru 2015-03-28 17:30:20 +00:00
parent df9089ac57
commit ee3d842694
1 changed files with 32 additions and 0 deletions

View File

@ -0,0 +1,32 @@
#include "capwap.h"
#include "cw_log.h"
int cw_readmsg_configuration_status_response(uint8_t *elems,int elems_len)
{
uint8_t * elem;
cw_foreach_elem(elem,elems,elems_len){
int type = cw_get_elem_type(elem);
int len = cw_get_elem_len(elem);
uint8_t *data = cw_get_elem_data(elem);
cw_dbg_msgelem(CW_MSG_CONFIGURATION_STATUS_RESPONSE, type, data, len);
cw_readelem_vendor_specific_payload(elem,CW_MSG_CONFIGURATION_STATUS_RESPONSE, type,data,len );
}
}