wps_dev_attr.h revision fb79edc9df1f20461e90e478363d207348213d35
1/*
2 * Wi-Fi Protected Setup - device attributes
3 * Copyright (c) 2008, Jouni Malinen <j@w1.fi>
4 *
5 * This software may be distributed under the terms of the BSD license.
6 * See README for more details.
7 */
8
9#ifndef WPS_DEV_ATTR_H
10#define WPS_DEV_ATTR_H
11
12struct wps_parse_attr;
13
14int wps_build_manufacturer(struct wps_device_data *dev, struct wpabuf *msg);
15int wps_build_model_name(struct wps_device_data *dev, struct wpabuf *msg);
16int wps_build_model_number(struct wps_device_data *dev, struct wpabuf *msg);
17int wps_build_dev_name(struct wps_device_data *dev, struct wpabuf *msg);
18int wps_build_device_attrs(struct wps_device_data *dev, struct wpabuf *msg);
19int wps_build_os_version(struct wps_device_data *dev, struct wpabuf *msg);
20int wps_build_vendor_ext_m1(struct wps_device_data *dev, struct wpabuf *msg);
21int wps_build_rf_bands(struct wps_device_data *dev, struct wpabuf *msg,
22		       u8 rf_band);
23int wps_build_primary_dev_type(struct wps_device_data *dev,
24			       struct wpabuf *msg);
25int wps_build_secondary_dev_type(struct wps_device_data *dev,
26				 struct wpabuf *msg);
27int wps_build_dev_name(struct wps_device_data *dev, struct wpabuf *msg);
28int wps_process_device_attrs(struct wps_device_data *dev,
29			     struct wps_parse_attr *attr);
30int wps_process_os_version(struct wps_device_data *dev, const u8 *ver);
31int wps_process_rf_bands(struct wps_device_data *dev, const u8 *bands);
32void wps_device_data_free(struct wps_device_data *dev);
33int wps_build_vendor_ext(struct wps_device_data *dev, struct wpabuf *msg);
34int wps_build_req_dev_type(struct wps_device_data *dev, struct wpabuf *msg,
35			   unsigned int num_req_dev_types,
36			   const u8 *req_dev_types);
37
38#endif /* WPS_DEV_ATTR_H */
39