Work on idx out struct ...

FossilOrigin-Name: 08213179f58d212281597094d8c20229f7baebbc0e97a2fc991a8a1be9119682
This commit is contained in:
7u83@mail.ru
2018-04-13 05:28:11 +00:00
parent 95d8beb1f1
commit 5591784c8b
9 changed files with 125 additions and 10 deletions

View File

@ -0,0 +1,25 @@
#include "cw.h"
#include "log.h"
int cw_in_idx_generic(struct cw_ElemHandler * handler, struct cw_ElemHandlerParams * params,
uint8_t * elem_data, int elem_len)
{
char key[CW_KTV_MAX_KEY_LEN];
cw_KTV_t * result;
int idx;
if (!handler->type){
cw_log(LOG_ERR,"Can't handle element: %s, no type defined",handler->name);
return CAPWAP_RESULT_UNRECOGNIZED_MESSAGE_ELEMENT;
}
idx=cw_get_byte(elem_data);
sprintf(key,handler->key,idx);
result = cw_ktv_add(params->conn->remote_cfg, key,
handler->type, elem_data+1,elem_len-1);
params->elem=result;
return CAPWAP_RESULT_SUCCESS;
}