2018-04-13 07:28:11 +02:00
|
|
|
#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];
|
2022-07-31 17:15:32 +02:00
|
|
|
cw_Val_t * result;
|
2018-04-13 07:28:11 +02:00
|
|
|
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);
|
|
|
|
|
2022-07-28 01:36:16 +02:00
|
|
|
result = cw_ktv_add(params->remote_cfg, key,
|
2018-04-25 10:43:27 +02:00
|
|
|
handler->type, NULL, elem_data+1,elem_len-1);
|
2018-04-13 07:28:11 +02:00
|
|
|
|
2022-08-09 09:52:30 +02:00
|
|
|
// params->elem=result;
|
2018-04-13 07:28:11 +02:00
|
|
|
|
|
|
|
return CAPWAP_RESULT_SUCCESS;
|
|
|
|
}
|