Files
actube/src/cw/cw_in_idx_generic.c
7u83@mail.ru 1f68439fa7 Byte - in has now valguard
FossilOrigin-Name: 7926e93ff40c6f5f6b34190ed6591339025f1a23c93469370c1fa160176571e5
2018-04-25 08:43:27 +00:00

26 lines
611 B
C

#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, NULL, elem_data+1,elem_len-1);
params->elem=result;
return CAPWAP_RESULT_SUCCESS;
}