Home
last modified time | relevance | path

Searched refs:wps_ie (Results 1 – 7 of 7) sorted by relevance

/hal_espressif-latest/components/wpa_supplicant/src/wps/
Dwps.h975 int wps_validate_beacon(const struct wpabuf *wps_ie);
976 int wps_validate_beacon_probe_resp(const struct wpabuf *wps_ie, int probe,
978 int wps_validate_probe_req(const struct wpabuf *wps_ie, const u8 *addr);
979 int wps_validate_assoc_req(const struct wpabuf *wps_ie);
980 int wps_validate_assoc_resp(const struct wpabuf *wps_ie);
1000 static inline int wps_validate_beacon(const struct wpabuf *wps_ie){ in wps_validate_beacon() argument
1004 static inline int wps_validate_beacon_probe_resp(const struct wpabuf *wps_ie, in wps_validate_beacon_probe_resp() argument
1010 static inline int wps_validate_probe_req(const struct wpabuf *wps_ie, in wps_validate_probe_req() argument
1016 static inline int wps_validate_assoc_req(const struct wpabuf *wps_ie) in wps_validate_assoc_req() argument
1021 static inline int wps_validate_assoc_resp(const struct wpabuf *wps_ie) in wps_validate_assoc_resp() argument
Dwps_validate.c1098 int wps_validate_beacon(const struct wpabuf *wps_ie) in wps_validate_beacon() argument
1110 if (wps_ie == NULL) { in wps_validate_beacon()
1115 if (wps_parse_msg(wps_ie, attr) < 0) { in wps_validate_beacon()
1151 int wps_validate_beacon_probe_resp(const struct wpabuf *wps_ie, int probe, in wps_validate_beacon_probe_resp() argument
1164 if (wps_ie == NULL) { in wps_validate_beacon_probe_resp()
1170 if (wps_parse_msg(wps_ie, attr) < 0) { in wps_validate_beacon_probe_resp()
1227 int wps_validate_probe_req(const struct wpabuf *wps_ie, const u8 *addr) in wps_validate_probe_req() argument
1239 if (wps_ie == NULL) { in wps_validate_probe_req()
1245 if (wps_parse_msg(wps_ie, attr) < 0) { in wps_validate_probe_req()
1289 int wps_validate_assoc_req(const struct wpabuf *wps_ie) in wps_validate_assoc_req() argument
[all …]
/hal_espressif-latest/components/wpa_supplicant/esp_supplicant/src/
Desp_wpa_main.c292 struct wpabuf *wps_ie = ieee802_11_vendor_ie_concat(ies, ies_len, WPS_DEV_OUI_WFA); in check_n_add_wps_sta() local
296 if (!wps_ie || (wps_type == WPS_TYPE_DISABLE)) { in check_n_add_wps_sta()
307 sta_info->wps_ie = wps_ie; in check_n_add_wps_sta()
Desp_wps.c297 struct wpabuf *wps_ie; in wps_build_ic_appie_wps_pr() local
308 wps_ie = wps_build_probe_req_ie(pw_id, sm->dev, sm->uuid, in wps_build_ic_appie_wps_pr()
311 if (!wps_ie) { in wps_build_ic_appie_wps_pr()
315 if (wpabuf_resize(&extra_ie, wpabuf_len(wps_ie)) == 0) { in wps_build_ic_appie_wps_pr()
316 wpabuf_put_buf(extra_ie, wps_ie); in wps_build_ic_appie_wps_pr()
318 wpabuf_free(wps_ie); in wps_build_ic_appie_wps_pr()
321 wpabuf_free(wps_ie); in wps_build_ic_appie_wps_pr()
/hal_espressif-latest/components/wpa_supplicant/src/ap/
Dsta_info.h59 struct wpabuf *wps_ie; /* WPS IE from (Re)Association Request */ member
Dsta_info.c124 wpabuf_free(sta->wps_ie); in ap_free_sta()
Dieee802_1x.c140 sta->wps_ie, NULL, sta, in ieee802_1x_alloc_eapol_sm()