Skip to content

Commit ae87691

Browse files
committed
Merge branch 'fix/backport_wifi_fixes_v5.3' into 'release/v5.3'
fix(wifi): Add back WIFI_AUTH_WPA3_EXT_PSK and WIFI_AUTH_WPA3_EXT_PSK_MIXED_MODE See merge request espressif/esp-idf!31218
2 parents 3f632df + e22c101 commit ae87691

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

components/esp_wifi/include/esp_wifi_types_generic.h

+2
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,8 @@ typedef enum {
7070
WIFI_AUTH_WAPI_PSK, /**< authenticate mode : WAPI_PSK */
7171
WIFI_AUTH_OWE, /**< authenticate mode : OWE */
7272
WIFI_AUTH_WPA3_ENT_192, /**< authenticate mode : WPA3_ENT_SUITE_B_192_BIT */
73+
WIFI_AUTH_WPA3_EXT_PSK, /**< this authentication mode will yield same result as WIFI_AUTH_WPA3_PSK and not recommended to be used. It will be deprecated in future, please use WIFI_AUTH_WPA3_PSK instead. */
74+
WIFI_AUTH_WPA3_EXT_PSK_MIXED_MODE, /**< this authentication mode will yield same result as WIFI_AUTH_WPA3_PSK and not recommended to be used. It will be deprecated in future, please use WIFI_AUTH_WPA3_PSK instead.*/
7375
WIFI_AUTH_DPP, /**< authenticate mode : DPP */
7476
WIFI_AUTH_MAX
7577
} wifi_auth_mode_t;

0 commit comments

Comments
 (0)