FossilOrigin-Name: ab0b70cf48e6931041efcd1ce7f1853d9e8349a7d6ecf18d2899af329dc72efe
This commit is contained in:
7u83@mail.ru 2018-03-27 16:37:17 +00:00
parent 6298fd5d56
commit c06ef57250
1 changed files with 30 additions and 0 deletions

View File

@ -0,0 +1,30 @@
#include "capwap.h"
#include "ktv.h"
#include "msgset.h"
#include "log.h"
#include "cw.h"
int cw_in_radio_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 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);
sprintf(key,"radio/%d/%s",radio,handler->key);
result = cw_ktv_add(params->conn->remote_cfg, key,
handler->type, elem_data+1,elem_len-1);
params->elem=result;
return CAPWAP_RESULT_SUCCESS;
}