cw_in_generic_struct works - see cisco ap time sync
FossilOrigin-Name: 3a33d8a0104938c2274c1c28dc284e50a3df308452e9147c704de9af2a1f9e69
This commit is contained in:
25
src/cw/cw_in_generic_struct.c
Normal file
25
src/cw/cw_in_generic_struct.c
Normal file
@ -0,0 +1,25 @@
|
||||
|
||||
#include "capwap.h"
|
||||
#include "msgset.h"
|
||||
#include "ktv.h"
|
||||
#include "log.h"
|
||||
|
||||
int cw_in_generic_struct(struct cw_ElemHandler * handler, struct cw_ElemHandlerParams * params,
|
||||
uint8_t * elem_data, int elem_len)
|
||||
{
|
||||
/*cw_KTV_t * result;*/
|
||||
|
||||
if (!handler->type){
|
||||
cw_log(LOG_ERR,"Can't handle element: %s, no type defined",handler->name);
|
||||
return CAPWAP_RESULT_UNRECOGNIZED_MESSAGE_ELEMENT;
|
||||
}
|
||||
|
||||
/* result = cw_ktv_add(params->conn->remote_cfg, handler->key,
|
||||
handler->type, elem_data,elem_len);
|
||||
*/
|
||||
cw_ktv_read_struct(params->conn->remote_cfg,handler->type,handler->key,elem_data,elem_len);
|
||||
|
||||
/*params->elem=result;*/
|
||||
|
||||
return CAPWAP_RESULT_SUCCESS;
|
||||
}
|
Reference in New Issue
Block a user