1234567891011121314151617181920212223242526272829 |
- /*
- * Wi-Fi Protected Setup - device attributes
- * Copyright (c) 2008, Jouni Malinen <j@w1.fi>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 2 as
- * published by the Free Software Foundation.
- *
- * Alternatively, this software may be distributed under the terms of BSD
- * license.
- *
- * See README and COPYING for more details.
- */
- #ifndef WPS_DEV_ATTR_H
- #define WPS_DEV_ATTR_H
- struct wps_parse_attr;
- int wps_build_device_attrs(struct wps_device_data *dev, struct wpabuf *msg);
- int wps_build_os_version(struct wps_device_data *dev, struct wpabuf *msg);
- int wps_process_device_attrs(struct wps_device_data *dev,
- struct wps_parse_attr *attr);
- int wps_process_os_version(struct wps_device_data *dev, const u8 *ver);
- void wps_device_data_dup(struct wps_device_data *dst,
- const struct wps_device_data *src);
- void wps_device_data_free(struct wps_device_data *dev);
- #endif /* WPS_DEV_ATTR_H */
|