/* 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 "format.h" #include "cw.h" #include "cw_types.h" static void del(mavldata_t * data){ free (data->kv.val.ptr); } static mavldata_t *get(mavldata_t * data, const uint8_t * src, int len) { uint8_t * s; s = bstr16_create(src,len); if (!s) return NULL; data->kv.priv = &cw_type_bstr16; data->kv.val.ptr=s; return data; } static int put(mavldata_t *data, uint8_t * dst) { return cw_put_bstr16(dst, data->kv.val.ptr); } static int to_str(const mavldata_t *data, char *dst, int max_len) { char *d; d=dst; if (format_is_utf8(bstr16_data(data->kv.val.ptr), bstr16_len(data->kv.val.ptr))) { d += sprintf(d, "%.*s", bstr16_len(data->kv.val.ptr), bstr16_data(data->kv.val.ptr)); } else { d += sprintf(d, ".x"); d += format_hex(d, bstr16_data(data->kv.val.ptr), bstr16_len(data->kv.val.ptr)); } return d-dst; } static mavldata_t *from_str(mavldata_t * data, const char *src) { return NULL; } const struct cw_Type cw_type_bstr16 = { "Bstr16", /* name */ del, /* del */ put, /* put */ get, /* get */ to_str, /* to_str */ from_str /* from_str */ };