Initial commit
FossilOrigin-Name: d8fd5cf25792800219919b4b81cf4d7153d2e08fe5e8b218f0f82f3747a51a31
This commit is contained in:
parent
df9089ac57
commit
ee3d842694
32
src/capwap/cw_readmsg_configuration_status_response.c
Normal file
32
src/capwap/cw_readmsg_configuration_status_response.c
Normal 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 );
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user