Home
last modified time | relevance | path

Searched refs:owe_ie (Results 1 – 3 of 3) sorted by relevance

/hal_espressif-latest/components/wpa_supplicant/esp_supplicant/src/
Desp_owe.c24 if (sm->owe_ie) { in owe_deinit()
25 wpabuf_free(sm->owe_ie); in owe_deinit()
26 sm->owe_ie = NULL; in owe_deinit()
/hal_espressif-latest/components/wpa_supplicant/src/rsn_supp/
Dwpa.c2835 if (sm->owe_ie) { in owe_build_assoc_req()
2836 wpabuf_free(sm->owe_ie); in owe_build_assoc_req()
2838 sm->owe_ie = wpabuf_alloc(5 + wpabuf_len(pub)); in owe_build_assoc_req()
2840 if (!sm->owe_ie) { in owe_build_assoc_req()
2846 wpabuf_put_u8(sm->owe_ie, WLAN_EID_EXTENSION); in owe_build_assoc_req()
2847 wpabuf_put_u8(sm->owe_ie, 1 + 2 + wpabuf_len(pub)); in owe_build_assoc_req()
2848 wpabuf_put_u8(sm->owe_ie, WLAN_EID_EXT_OWE_DH_PARAM); in owe_build_assoc_req()
2849 wpabuf_put_le16(sm->owe_ie, group); in owe_build_assoc_req()
2850 wpabuf_put_buf(sm->owe_ie, pub); in owe_build_assoc_req()
2853 wpa_hexdump_buf(MSG_DEBUG, "OWE: Diffie-Hellman Parameter element", sm->owe_ie); in owe_build_assoc_req()
[all …]
Dwpa_i.h117 struct wpabuf *owe_ie; member