diff options
| author | Johannes Berg <johannes.berg@intel.com> | 2026-01-28 16:24:12 +0300 |
|---|---|---|
| committer | Johannes Berg <johannes.berg@intel.com> | 2026-03-03 13:59:55 +0300 |
| commit | 5d048bbed1bb2bbef612dad0bb9c177c434e63a4 (patch) | |
| tree | 85c2c77755f93f47d66c52c633f87a8ed23c9574 /net | |
| parent | 7c6084d7fa4e61dd7824c34529277a814c7b3836 (diff) | |
| download | linux-5d048bbed1bb2bbef612dad0bb9c177c434e63a4.tar.xz | |
wifi: mac80211: give the AP more time for EPPKE as well
EPPKE authentication can use SAE (via PASN), so give the
AP more time to respond to EPPKE case just like for SAE.
Link: https://patch.msgid.link/20260128132414.881741-2-johannes@sipsolutions.net
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'net')
| -rw-r--r-- | net/mac80211/mlme.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net/mac80211/mlme.c b/net/mac80211/mlme.c index 7957eacc5ab7..170330d924a3 100644 --- a/net/mac80211/mlme.c +++ b/net/mac80211/mlme.c @@ -8498,7 +8498,8 @@ static int ieee80211_auth(struct ieee80211_sub_if_data *sdata) return -ETIMEDOUT; } - if (auth_data->algorithm == WLAN_AUTH_SAE) + if (auth_data->algorithm == WLAN_AUTH_SAE || + auth_data->algorithm == WLAN_AUTH_EPPKE) info.duration = jiffies_to_msecs(IEEE80211_AUTH_TIMEOUT_SAE); info.link_id = auth_data->link_id; |
