On 2/25/22 19:06, James Prestwood wrote:
The 802.11ax standards adds some restrictions for the 6GHz band. In
short
stations must use SAE, OWE, or 8021x on this band and frame protection is
required.
---
src/network.c | 58 +++++++++++++++++++++++++++++++++++++++------------
1 file changed, 45 insertions(+), 13 deletions(-)
v4:
* Renamed label to mfp_no_tkip
* Fixed missing parentheses after IS_SAE
<snip>
+ /* Basically the STA must use OWE, SAE, or 8021x */
+ if (!IE_AKM_IS_SAE(rsn.akm_suites) &&
+ !IE_AKM_IS_8021X(rsn.akm_suites) &&
+ (!(rsn.akm_suites | IE_RSN_AKM_SUITE_OWE)))
I amended this to use '&' instead of '|' and applied, thanks.
Regards,
-Denis