2018-03-19 17:26:01 +01:00
|
|
|
|
|
|
|
#include "capwap.h"
|
2018-03-12 11:22:06 +01:00
|
|
|
#include "msgset.h"
|
2022-07-31 17:15:32 +02:00
|
|
|
#include "val.h"
|
2018-03-07 13:13:58 +01:00
|
|
|
#include "log.h"
|
2018-03-06 03:08:14 +01:00
|
|
|
|
2018-03-09 07:44:17 +01:00
|
|
|
int cw_in_generic(struct cw_ElemHandler * handler, struct cw_ElemHandlerParams * params,
|
2018-03-19 17:26:01 +01:00
|
|
|
uint8_t * elem_data, int elem_len)
|
|
|
|
{
|
2022-07-31 17:15:32 +02:00
|
|
|
cw_Val_t * result;
|
2022-08-09 22:35:47 +02:00
|
|
|
cw_Val_t val;
|
|
|
|
cw_Type_t * type;
|
|
|
|
int n;
|
|
|
|
char strval[2048];
|
|
|
|
|
|
|
|
memset(&val,0,sizeof(cw_Val_t));
|
2018-03-07 13:13:58 +01:00
|
|
|
|
2022-08-09 22:35:47 +02:00
|
|
|
|
|
|
|
type = (cw_Type_t*)handler->type;
|
|
|
|
|
|
|
|
if (!type){
|
2018-03-07 13:13:58 +01:00
|
|
|
cw_log(LOG_ERR,"Can't handle element: %s, no type defined",handler->name);
|
2018-03-19 17:26:01 +01:00
|
|
|
return CAPWAP_RESULT_UNRECOGNIZED_MESSAGE_ELEMENT;
|
2018-03-07 13:13:58 +01:00
|
|
|
}
|
2022-07-28 18:25:05 +02:00
|
|
|
|
2022-08-09 22:35:47 +02:00
|
|
|
type->read(params->local_cfg, handler->key,elem_data,elem_len,handler->param);
|
|
|
|
|
|
|
|
|
|
|
|
// exit(0);
|
|
|
|
|
|
|
|
/* if (!result){
|
|
|
|
cw_log(LOG_ERR, "Can't create kvstore element for key %s of type %s: %s",
|
|
|
|
handler->key,type->name, strerror(errno));
|
|
|
|
return CAPWAP_RESULT_UNRECOGNIZED_MESSAGE_ELEMENT;
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// n = type->to_str(&val,strval,2048);
|
|
|
|
|
|
|
|
// printf("SETTING: %s: %s (%d)\n",handler->key,strval,n);
|
|
|
|
|
|
|
|
|
|
|
|
// result = cw_ktv_add(params->remote_cfg, handler->key,
|
|
|
|
// handler->type,NULL, elem_data,elem_len);
|
2022-08-09 09:52:30 +02:00
|
|
|
// params->elem=result;
|
2018-03-19 17:26:01 +01:00
|
|
|
return CAPWAP_RESULT_SUCCESS;
|
2015-04-26 12:36:53 +02:00
|
|
|
}
|