Select one of the symbols to view example projects that use it.
 
Outline
#define WPS_DEV_ATTR_H
wps_parse_attr
wps_build_manufacturer(struct wps_device_data *, struct wpabuf *);
wps_build_model_name(struct wps_device_data *, struct wpabuf *);
wps_build_model_number(struct wps_device_data *, struct wpabuf *);
wps_build_serial_number(struct wps_device_data *, struct wpabuf *);
wps_build_dev_name(struct wps_device_data *, struct wpabuf *);
wps_build_device_attrs(struct wps_device_data *, struct wpabuf *);
wps_build_os_version(struct wps_device_data *, struct wpabuf *);
wps_build_vendor_ext_m1(struct wps_device_data *, struct wpabuf *);
wps_build_rf_bands(struct wps_device_data *, struct wpabuf *, u8);
wps_build_primary_dev_type(struct wps_device_data *, struct wpabuf *);
wps_build_secondary_dev_type(struct wps_device_data *, struct wpabuf *);
wps_build_dev_name(struct wps_device_data *, struct wpabuf *);
wps_process_device_attrs(struct wps_device_data *, struct wps_parse_attr *);
wps_process_os_version(struct wps_device_data *, const u8 *);
wps_process_vendor_ext_m1(struct wps_device_data *, const u8);
wps_process_rf_bands(struct wps_device_data *, const u8 *);
wps_device_data_free(struct wps_device_data *);
wps_build_vendor_ext(struct wps_device_data *, struct wpabuf *);
wps_build_application_ext(struct wps_device_data *, struct wpabuf *);
wps_build_req_dev_type(struct wps_device_data *, struct wpabuf *, unsigned int, const u8 *);
Files
loading (3/5)...
SourceVuESP-IDF Framework and ExamplesESP-IDFcomponents/wpa_supplicant/src/wps/wps_dev_attr.h
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* * Wi-Fi Protected Setup - device attributes * Copyright (c) 2008, Jouni Malinen <j@w1.fi> * * This software may be distributed under the terms of the BSD license. * See README for more details. *//* ... */ #ifndef WPS_DEV_ATTR_H #define WPS_DEV_ATTR_H struct wps_parse_attr; int wps_build_manufacturer(struct wps_device_data *dev, struct wpabuf *msg); int wps_build_model_name(struct wps_device_data *dev, struct wpabuf *msg); int wps_build_model_number(struct wps_device_data *dev, struct wpabuf *msg); int wps_build_serial_number(struct wps_device_data *dev, struct wpabuf *msg); int wps_build_dev_name(struct wps_device_data *dev, struct wpabuf *msg); 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_build_vendor_ext_m1(struct wps_device_data *dev, struct wpabuf *msg); int wps_build_rf_bands(struct wps_device_data *dev, struct wpabuf *msg, u8 rf_band); int wps_build_primary_dev_type(struct wps_device_data *dev, struct wpabuf *msg); int wps_build_secondary_dev_type(struct wps_device_data *dev, struct wpabuf *msg); int wps_build_dev_name(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_process_vendor_ext_m1(struct wps_device_data *dev, const u8 ext); int wps_process_rf_bands(struct wps_device_data *dev, const u8 *bands); void wps_device_data_free(struct wps_device_data *dev); int wps_build_vendor_ext(struct wps_device_data *dev, struct wpabuf *msg); int wps_build_application_ext(struct wps_device_data *dev, struct wpabuf *msg); int wps_build_req_dev_type(struct wps_device_data *dev, struct wpabuf *msg, unsigned int num_req_dev_types, const u8 *req_dev_types); /* ... */ #endif /* WPS_DEV_ATTR_H */
Details
Show:
from
Types: Columns:
This file uses the notable symbols shown below. Click anywhere in the file to view more details.