added dump suffix

FossilOrigin-Name: 894e6305f65760e1e93fc575b96a45a487bdd253ef0f67f0ad2645f262d204ca
This commit is contained in:
tobias.herre@wikimedia.de
2018-03-07 12:13:58 +00:00
parent accc0929cd
commit 06e50e8318
6 changed files with 42 additions and 10 deletions

View File

@ -1,17 +1,26 @@
#include "message_set.h"
#include "cw_types.h"
#include "kvstore.h"
#include "log.h"
int cw_in_generic(struct conn * conn, struct cw_ElemHandler * handler,
uint8_t * elem_data, int elem_len, struct sockaddr * from){
mavldata_t data, *result;
/* mavldata_t data, *result;
char str[30];
*/
if (!handler->type){
cw_log(LOG_ERR,"Can't handle element: %s, no type defined",handler->name);
return 0;
}
cw_kvstore_add(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);
handler->type->to_str(result,str,30);
/* printf("Read %d-%s: %s %s\n", handler->id, handler->name, handler->key, str);
*/
mavl_add(conn->remote_cfg, result);
*/
return 0;
}