Răsfoiți Sursa

qcacld-3.0: Relax WPA2 and WPA3-SAE HnP for MLO connection

Change the default connection dot11mode behavior of APs with
following security configuration which can support MLO:
   1) WPA2 with PMF
   2) WPA3-SAE with HnP (or H2E cap equals false)

Currently User has to force allow connection in MLO via INI or
else driver downgrades such candidates to 11ax.

Change-Id: I4ff232fc920e19e4f158eba3038abd57b045e705
CRs-Fixed: 3779433
Vinod Kumar Pirla 1 an în urmă
părinte
comite
28f58fc1f3
1 a modificat fișierele cu 3 adăugiri și 3 ștergeri
  1. 3 3
      components/mlme/dispatcher/inc/cfg_mlme_generic.h

+ 3 - 3
components/mlme/dispatcher/inc/cfg_mlme_generic.h

@@ -240,17 +240,17 @@ enum wlan_epcs_frame {
  * options using bitmap based on following ENUM (Name of ENUM to be added)
  * @Min: 0x0
  * @Max: 0xFFFFFFFF
- * @Default: 0x0
+ * @Default: 0x20008 - To allow MLO WPA2-PMF cap APs and WPA3-SAE w/o H2E cap
  *
  * This INI is used to control the driver candidate selection and EHT
  * connection choice based on OEM configuration. The bitmap follows the
- * implementation from this ENUM (name of the ENUM to be added)
+ * implementation from wlan_crypto_oem_eht_mlo_config enum
  */
 #define CFG_OEM_EHT_MLO_CRYPTO_BITMAP CFG_INI_UINT( \
 		"oem_eht_mlo_crypto_bitmap", \
 		0x0, \
 		0xFFFFFFFF, \
-		0x0, \
+		0x20008, \
 		CFG_VALUE_OR_DEFAULT, \
 		"OEM control to allow/disallow crypto to EHT configuration")