Allow EAPOL frames from pre-authenticating station to be processed

This commit is contained in:
Jouni Malinen 2010-10-08 15:49:12 +03:00 committed by Jouni Malinen
parent d143bdc862
commit c926593119

View file

@ -681,9 +681,9 @@ void ieee802_1x_receive(struct hostapd_data *hapd, const u8 *sa, const u8 *buf,
wpa_printf(MSG_DEBUG, "IEEE 802.1X: %lu bytes from " MACSTR, wpa_printf(MSG_DEBUG, "IEEE 802.1X: %lu bytes from " MACSTR,
(unsigned long) len, MAC2STR(sa)); (unsigned long) len, MAC2STR(sa));
sta = ap_get_sta(hapd, sa); sta = ap_get_sta(hapd, sa);
if (!sta || !(sta->flags & WLAN_STA_ASSOC)) { if (!sta || !(sta->flags & (WLAN_STA_ASSOC | WLAN_STA_PREAUTH))) {
wpa_printf(MSG_DEBUG, "IEEE 802.1X data frame from not " wpa_printf(MSG_DEBUG, "IEEE 802.1X data frame from not "
"associated STA"); "associated/Pre-authenticating STA");
return; return;
} }