/* This file is part of libcapwap. libcapwap is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. libcapwap is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with Foobar. If not, see . */ #include #include "cw_types.h" #include "cw.h" /* static struct mdata_Elem * from_str(const char *src) { struct mdata_Elem * e = mdata_elem_new(&cw_type_word); if (!e) return NULL; e->data.word=atoi(src); return e; } static int to_str(const struct mdata_Elem *e, char *dst) { return sprintf(dst, "%d", e->data.word); } static struct mdata_Elem * get(const uint8_t *src,int len) { struct mdata_Elem * e = mdata_elem_new(&cw_type_word); if (!e) return NULL; e->data.word=cw_get_word(src); return e; } static int put(struct mdata_Elem * e, uint8_t *dst) { return cw_put_word(dst,e->data.word); } #define _I_NAME "Word" #define _I_PUT put #define _I_GET get #define _I_DEL NULL #define _I_TO_STR to_str #define _I_FROM_STR from_str const struct mdata_Type cw_type_word = MDATA_TYPE_INIT(); */