Skip to content

Commit e22c101

Browse files
sarveshb14jack0c
authored andcommitted
fix(wifi): Add back WIFI_AUTH_WPA3_EXT_PSK and WIFI_AUTH_WPA3_EXT_PSK_MIXED_MODE
Add back above authmodes instead of removing and merging them with WIFI_AUTH_WPA3_PSK in minor releases during v5.x. These authmodes will be removed from v6.0
1 parent 63f0195 commit e22c101

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)