Searched refs:pending_eapol_rx (Results 1 – 6 of 6) sorted by relevance
59 struct pending_eapol_rx { struct121 struct pending_eapol_rx *pending_eapol_rx; member
867 if (sta->pending_eapol_rx) { in ieee802_1x_save_eapol()868 wpabuf_free(sta->pending_eapol_rx->buf); in ieee802_1x_save_eapol()870 sta->pending_eapol_rx = in ieee802_1x_save_eapol()871 os_malloc(sizeof(*sta->pending_eapol_rx)); in ieee802_1x_save_eapol()872 if (!sta->pending_eapol_rx) in ieee802_1x_save_eapol()876 sta->pending_eapol_rx->buf = wpabuf_alloc_copy(buf, len); in ieee802_1x_save_eapol()877 if (!sta->pending_eapol_rx->buf) { in ieee802_1x_save_eapol()878 os_free(sta->pending_eapol_rx); in ieee802_1x_save_eapol()879 sta->pending_eapol_rx = NULL; in ieee802_1x_save_eapol()883 os_get_reltime(&sta->pending_eapol_rx->rx_time); in ieee802_1x_save_eapol()[all …]
2800 if (sta->pending_eapol_rx) { in handle_assoc_cb()2804 os_reltime_sub(&now, &sta->pending_eapol_rx->rx_time, &age); in handle_assoc_cb()2811 wpabuf_head(sta->pending_eapol_rx->buf), in handle_assoc_cb()2812 wpabuf_len(sta->pending_eapol_rx->buf)); in handle_assoc_cb()2814 wpabuf_free(sta->pending_eapol_rx->buf); in handle_assoc_cb()2815 os_free(sta->pending_eapol_rx); in handle_assoc_cb()2816 sta->pending_eapol_rx = NULL; in handle_assoc_cb()
2364 if (wpa_s->pending_eapol_rx) {2376 wpabuf_head(wpa_s->pending_eapol_rx),2377 wpabuf_len(wpa_s->pending_eapol_rx));2379 wpabuf_free(wpa_s->pending_eapol_rx);2380 wpa_s->pending_eapol_rx = NULL;
480 wpabuf_free(wpa_s->pending_eapol_rx); in wpa_supplicant_cleanup()481 wpa_s->pending_eapol_rx = NULL; in wpa_supplicant_cleanup()1639 wpabuf_free(wpa_s->pending_eapol_rx); in wpa_supplicant_associate()1640 wpa_s->pending_eapol_rx = NULL; in wpa_supplicant_associate()3273 wpabuf_free(wpa_s->pending_eapol_rx); in wpa_supplicant_rx_eapol()3274 wpa_s->pending_eapol_rx = wpabuf_alloc_copy(buf, len); in wpa_supplicant_rx_eapol()3275 if (wpa_s->pending_eapol_rx) { in wpa_supplicant_rx_eapol()
703 struct wpabuf *pending_eapol_rx; member