Home | History | Annotate | Download | only in ap

Lines Matching refs:pending_eapol_rx

871 	if (sta->pending_eapol_rx) {
872 wpabuf_free(sta->pending_eapol_rx->buf);
874 sta->pending_eapol_rx =
875 os_malloc(sizeof(*sta->pending_eapol_rx));
876 if (!sta->pending_eapol_rx)
880 sta->pending_eapol_rx->buf = wpabuf_alloc_copy(buf, len);
881 if (!sta->pending_eapol_rx->buf) {
882 os_free(sta->pending_eapol_rx);
883 sta->pending_eapol_rx = NULL;
887 os_get_reltime(&sta->pending_eapol_rx->rx_time);
1242 if (sta->pending_eapol_rx) {
1243 wpabuf_free(sta->pending_eapol_rx->buf);
1244 os_free(sta->pending_eapol_rx);
1245 sta->pending_eapol_rx = NULL;