Home
last modified time | relevance | path

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

/hal_espressif-latest/components/wpa_supplicant/esp_supplicant/src/
Desp_wpa3.c451 struct hostapd_sae_commit_queue *frm; in wpa3_process_rx_commit() local
455 frm = dl_list_first(&hapd->sae_commit_queue, in wpa3_process_rx_commit()
457 if (!frm) { in wpa3_process_rx_commit()
461 dl_list_del(&frm->list); in wpa3_process_rx_commit()
464 sta = ap_get_sta(hapd, frm->bssid); in wpa3_process_rx_commit()
466 sta = ap_sta_add(hapd, frm->bssid); in wpa3_process_rx_commit()
470 if (esp_send_sae_auth_reply(hapd, frm->bssid, frm->bssid, WLAN_AUTH_SAE, in wpa3_process_rx_commit()
471 frm->auth_transaction, ret, NULL, in wpa3_process_rx_commit()
481 …ret = handle_auth_sae(hapd, sta, frm->msg, frm->len, frm->bssid, frm->auth_transaction, frm->statu… in wpa3_process_rx_commit()
492 esp_wifi_ap_get_sta_aid(frm->bssid, &aid); in wpa3_process_rx_commit()
[all …]
Desp_common.c52 struct ieee_mgmt_frame *frm = os_malloc(sizeof(struct ieee_mgmt_frame) + len); in handle_action_frm() local
54 if (!frm) { in handle_action_frm()
59 os_memcpy(frm->sender, sender, ETH_ALEN); in handle_action_frm()
60 frm->len = len; in handle_action_frm()
61 frm->channel = channel; in handle_action_frm()
62 frm->rssi = rssi; in handle_action_frm()
64 os_memcpy(frm->payload, frame, len); in handle_action_frm()
65 if (esp_supplicant_post_evt(SIG_SUPPLICANT_RX_ACTION, (u32)frm) != 0) { in handle_action_frm()
66 os_free(frm); in handle_action_frm()
135 struct ieee_mgmt_frame *frm = (struct ieee_mgmt_frame *)evt->data; in btm_rrm_task() local
[all …]