Added preliminary Wi-Fi Protected Setup (WPS) implementation
[wpasupplicant] / src / wps / wps_dev_attr.h
1 /*
2  * Wi-Fi Protected Setup - device attributes
3  * Copyright (c) 2008, Jouni Malinen <j@w1.fi>
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License version 2 as
7  * published by the Free Software Foundation.
8  *
9  * Alternatively, this software may be distributed under the terms of BSD
10  * license.
11  *
12  * See README and COPYING for more details.
13  */
14
15 #ifndef WPS_DEV_ATTR_H
16 #define WPS_DEV_ATTR_H
17
18 struct wps_parse_attr;
19
20 int wps_build_device_attrs(struct wps_device_data *dev, struct wpabuf *msg);
21 int wps_build_os_version(struct wps_device_data *dev, struct wpabuf *msg);
22 int wps_process_device_attrs(struct wps_device_data *dev,
23                              struct wps_parse_attr *attr);
24 int wps_process_os_version(struct wps_device_data *dev, const u8 *ver);
25 void wps_device_data_dup(struct wps_device_data *dst,
26                          const struct wps_device_data *src);
27 void wps_device_data_free(struct wps_device_data *dev);
28
29 #endif /* WPS_DEV_ATTR_H */