AP: Don't process SAE/OWE association info on MLD links
Only the main link handles SAE authentication and OWE, skip them on other links. Signed-off-by: Andrei Otcheretianski <andrei.otcheretianski@intel.com>
This commit is contained in:
parent
90d819c242
commit
6046aef734
1 changed files with 3 additions and 0 deletions
|
@ -4040,6 +4040,8 @@ static int __check_assoc_ies(struct hostapd_data *hapd, struct sta_info *sta,
|
|||
}
|
||||
#endif /* CONFIG_IEEE80211R_AP */
|
||||
|
||||
if (link)
|
||||
goto skip_sae_owe;
|
||||
#ifdef CONFIG_SAE
|
||||
if (wpa_auth_uses_sae(sta->wpa_sm) && sta->sae &&
|
||||
sta->sae->state == SAE_ACCEPTED)
|
||||
|
@ -4089,6 +4091,7 @@ static int __check_assoc_ies(struct hostapd_data *hapd, struct sta_info *sta,
|
|||
return resp;
|
||||
}
|
||||
#endif /* CONFIG_OWE */
|
||||
skip_sae_owe:
|
||||
|
||||
#ifdef CONFIG_DPP2
|
||||
dpp_pfs_free(sta->dpp_pfs);
|
||||
|
|
Loading…
Reference in a new issue