2018-04-08 16:48:13 +02:00
|
|
|
|
|
|
|
#include "capwap.h"
|
|
|
|
#include "msgset.h"
|
2022-07-31 17:15:32 +02:00
|
|
|
#include "val.h"
|
2018-04-08 16:48:13 +02:00
|
|
|
#include "log.h"
|
|
|
|
#include "cw.h"
|
|
|
|
|
2022-08-13 09:47:12 +02:00
|
|
|
#include "dbg.h"
|
|
|
|
|
2018-04-08 16:48:13 +02:00
|
|
|
int cw_in_radio_generic_struct(struct cw_ElemHandler * handler, struct cw_ElemHandlerParams * params,
|
|
|
|
uint8_t * elem_data, int elem_len)
|
|
|
|
{
|
2022-08-13 09:47:12 +02:00
|
|
|
|
|
|
|
stop();
|
|
|
|
|
2022-08-14 12:26:34 +02:00
|
|
|
char key[CW_CFG_MAX_KEY_LEN];
|
2018-04-08 16:48:13 +02:00
|
|
|
int radio;
|
|
|
|
|
|
|
|
if (!handler->type){
|
|
|
|
cw_log(LOG_ERR,"Can't handle element: %s, no type defined",handler->name);
|
|
|
|
return CAPWAP_RESULT_UNRECOGNIZED_MESSAGE_ELEMENT;
|
|
|
|
}
|
|
|
|
|
|
|
|
radio = cw_get_byte(elem_data);
|
2018-04-17 07:46:09 +02:00
|
|
|
sprintf(key,"radio.%d/%s",radio,handler->key);
|
2018-04-08 16:48:13 +02:00
|
|
|
|
2022-08-13 09:47:12 +02:00
|
|
|
cw_ktv_read_struct(params->cfg,handler->type,key,elem_data+1,elem_len-1);
|
2018-04-08 16:48:13 +02:00
|
|
|
|
|
|
|
/*params->elem=result;*/
|
|
|
|
|
|
|
|
return CAPWAP_RESULT_SUCCESS;
|
|
|
|
}
|