Cisco AP Timesyn added

FossilOrigin-Name: 3f96b2b7c402a1b314c88a9573b26bd5296faa27a3ad50bf37fda9021b83f120
This commit is contained in:
7u83@mail.ru
2018-03-25 19:39:31 +00:00
parent 11ee224d78
commit d420f572ee
9 changed files with 64 additions and 17 deletions

View File

@ -197,4 +197,4 @@ uint8_t * bstrv_create(uint32_t vendor_id, uint8_t *data, uint8_t len);
/**
* @} AGLOS
*/
*/

View File

@ -40,6 +40,11 @@ struct cw_ElemHandlerParams {
char * debug_details;
};
union handlerType{
const struct cw_Type type;
int x;
};
struct cw_ElemHandler {
const char * name;
int id;
@ -48,6 +53,7 @@ struct cw_ElemHandler {
int min_len;
int max_len;
const struct cw_Type * type;
/* union handlerType type; */
const char * key;
int (*get)(struct cw_ElemHandler * handler, struct cw_ElemHandlerParams * params,
uint8_t*data, int len);