actube/src/cw/cw_in_generic.c

38 lines
766 B
C
Raw Permalink Normal View History

#include "capwap.h"
#include "msgset.h"
2022-07-31 17:15:32 +02:00
#include "val.h"
#include "log.h"
2022-08-13 09:47:12 +02:00
#include "dbg.h"
int cw_in_generic(struct cw_ElemHandler * handler, struct cw_ElemHandlerParams * params,
uint8_t * elem_data, int elem_len)
{
2022-08-09 22:35:47 +02:00
cw_Type_t * type;
2022-08-13 09:47:12 +02:00
type = (cw_Type_t*)handler->type;
2022-08-14 11:22:30 +02:00
char mkey[CW_CFG_MAX_KEY_LEN];
2022-08-13 09:47:12 +02:00
const char *key;
2022-08-09 22:35:47 +02:00
if (!type){
cw_log(LOG_ERR,"Can't handle element: %s, no type defined",handler->name);
return CAPWAP_RESULT_UNRECOGNIZED_MESSAGE_ELEMENT;
}
2022-08-13 09:47:12 +02:00
if (handler->mkkey != NULL){
handler->mkkey(handler->key,elem_data,elem_len, mkey);
key = mkey;
}
else{
key = handler->key;
2022-08-09 22:35:47 +02:00
}
2022-08-13 09:47:12 +02:00
2022-08-09 22:35:47 +02:00
2022-08-13 09:47:12 +02:00
/* cw_dbg(DBG_X, "READ: %s / %s",type->name,key);*/
type->read(params->cfg, key,elem_data,elem_len,handler->param);
return CAPWAP_RESULT_SUCCESS;
}