eapol: add FILS-FT AKMs to eapol_start

This will prevent FILS-FT from starting the 4-way handshake as it
does for regular FILS
This commit is contained in:
James Prestwood 2019-05-10 13:19:33 -07:00 committed by Denis Kenzior
parent 5d2b995175
commit 4097a49669
1 changed files with 3 additions and 1 deletions

View File

@ -2352,7 +2352,9 @@ bool eapol_start(struct eapol_sm *sm)
* then we wait for a rekey.
*/
if (sm->handshake->akm_suite & (IE_RSN_AKM_SUITE_FILS_SHA256 |
IE_RSN_AKM_SUITE_FILS_SHA384))
IE_RSN_AKM_SUITE_FILS_SHA384 |
IE_RSN_AKM_SUITE_FT_OVER_FILS_SHA384 |
IE_RSN_AKM_SUITE_FT_OVER_FILS_SHA256))
return true;
if (sm->require_handshake)