Debugging colored, cool

FossilOrigin-Name: b62ab94004ae914a6c042383ef399141a1a82e49408b6ae3b1422ba3c72733b1
This commit is contained in:
7u83@mail.ru
2018-03-19 16:26:01 +00:00
parent 7832ca1336
commit 34646183a1
28 changed files with 194 additions and 282 deletions

View File

@ -1,26 +1,23 @@
#include "capwap.h"
#include "msgset.h"
#include "ktv.h"
#include "log.h"
int cw_in_generic(struct cw_ElemHandler * handler, struct cw_ElemHandlerParams * params,
uint8_t * elem_data, int elem_len){
/* mavldata_t data, *result;
char str[30];
*/
uint8_t * elem_data, int elem_len)
{
cw_KTV_t * result;
if (!handler->type){
cw_log(LOG_ERR,"Can't handle element: %s, no type defined",handler->name);
return 0;
return CAPWAP_RESULT_UNRECOGNIZED_MESSAGE_ELEMENT;
}
cw_ktv_add(params->conn->remote_cfg, handler->key, handler->type, elem_data,elem_len);
result = cw_ktv_add(params->conn->remote_cfg, handler->key,
handler->type, elem_data,elem_len);
/*
result = handler->type->get(&data,elem_data,elem_len);
result->kv.key = strdup(handler->key);
params->elem=result;
handler->type->to_str(result,str,30);
mavl_add(conn->remote_cfg, result);
*/
return 0;
return CAPWAP_RESULT_SUCCESS;
}