From: Jouni Malinen Date: Tue, 31 Dec 2013 10:07:11 +0000 (+0200) Subject: Clear EAPOL Logoff state on FLUSH command X-Git-Tag: hostap_2_1~263 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=0d79b50ae775dd3bb7461d7360b377117f965408;p=thirdparty%2Fhostap.git Clear EAPOL Logoff state on FLUSH command Signed-hostap: Jouni Malinen --- diff --git a/wpa_supplicant/ctrl_iface.c b/wpa_supplicant/ctrl_iface.c index 4c55aec9e..557ed7a3b 100644 --- a/wpa_supplicant/ctrl_iface.c +++ b/wpa_supplicant/ctrl_iface.c @@ -5220,6 +5220,7 @@ static void wpa_supplicant_ctrl_iface_flush(struct wpa_supplicant *wpa_s) wpa_sm_set_param(wpa_s->wpa, RSNA_PMK_LIFETIME, 43200); wpa_sm_set_param(wpa_s->wpa, RSNA_PMK_REAUTH_THRESHOLD, 70); wpa_sm_set_param(wpa_s->wpa, RSNA_SA_TIMEOUT, 60); + eapol_sm_notify_logoff(wpa_s->eapol, FALSE); }