Home
last modified time | relevance | path

Searched refs:eap_buf (Results 1 – 2 of 2) sorted by relevance

/hal_espressif-latest/components/wpa_supplicant/esp_supplicant/src/
Desp_wps.c452 struct wpabuf *eap_buf = NULL; in wps_send_eap_identity_rsp() local
458 eap_buf = eap_msg_alloc(EAP_VENDOR_IETF, EAP_TYPE_IDENTITY, sm->identity_len, in wps_send_eap_identity_rsp()
460 if (!eap_buf) { in wps_send_eap_identity_rsp()
467 wpabuf_put_data(eap_buf, sm->identity, sm->identity_len); in wps_send_eap_identity_rsp()
469 …sm_alloc_eapol(sm, IEEE802_1X_TYPE_EAP_PACKET, wpabuf_head_u8(eap_buf), wpabuf_len(eap_buf), (size… in wps_send_eap_identity_rsp()
485 wpabuf_free(eap_buf); in wps_send_eap_identity_rsp()
492 struct wpabuf *eap_buf = NULL; in wps_send_frag_ack() local
503 eap_buf = eap_wsc_build_frag_ack(id, EAP_CODE_RESPONSE); in wps_send_frag_ack()
504 if (!eap_buf) { in wps_send_frag_ack()
509 …sm_alloc_eapol(sm, IEEE802_1X_TYPE_EAP_PACKET, wpabuf_head_u8(eap_buf), wpabuf_len(eap_buf), (size… in wps_send_frag_ack()
[all …]
/hal_espressif-latest/components/wpa_supplicant/src/eap_peer/
Deap.c414 struct wpabuf *eap_buf = NULL; in eap_sm_build_identity_resp() local
439 eap_buf = eap_msg_alloc(EAP_VENDOR_IETF, EAP_TYPE_IDENTITY, in eap_sm_build_identity_resp()
441 if (!eap_buf) { in eap_sm_build_identity_resp()
445 wpabuf_put_data(eap_buf, identity, identity_len); in eap_sm_build_identity_resp()
446 return eap_buf; in eap_sm_build_identity_resp()