mirror of
https://github.com/vanhoefm/fragattacks.git
synced 2025-02-07 04:34:04 -05:00
Use secondary channel provided by ACS for HT40 if valid
Previously, hostapd ignored the secondary channel provided by ACS if both HT40+ and HT40- are set in hostapd.conf. This change selects such channel for HT40 if it's valid, which is more reasonable. Signed-off-by: Jouni Malinen <jouni@codeaurora.org>
This commit is contained in:
parent
e0d9f5fc15
commit
c4bab72d96
@ -879,10 +879,11 @@ static int hostapd_is_usable_chans(struct hostapd_iface *iface)
|
|||||||
if (!iface->conf->secondary_channel)
|
if (!iface->conf->secondary_channel)
|
||||||
return 1;
|
return 1;
|
||||||
|
|
||||||
|
if (hostapd_is_usable_chan(iface, iface->freq +
|
||||||
|
iface->conf->secondary_channel * 20, 0))
|
||||||
|
return 1;
|
||||||
if (!iface->conf->ht40_plus_minus_allowed)
|
if (!iface->conf->ht40_plus_minus_allowed)
|
||||||
return hostapd_is_usable_chan(
|
return 0;
|
||||||
iface,
|
|
||||||
iface->freq + iface->conf->secondary_channel * 20, 0);
|
|
||||||
|
|
||||||
/* Both HT40+ and HT40- are set, pick a valid secondary channel */
|
/* Both HT40+ and HT40- are set, pick a valid secondary channel */
|
||||||
secondary_freq = iface->freq + 20;
|
secondary_freq = iface->freq + 20;
|
||||||
|
Loading…
Reference in New Issue
Block a user