From e22c101034760ce42e701e64a53f3dec691032d5 Mon Sep 17 00:00:00 2001 From: Sarvesh Bodakhe Date: Thu, 30 May 2024 19:16:43 +0530 Subject: [PATCH] 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 --- components/esp_wifi/include/esp_wifi_types_generic.h | 2 ++ components/esp_wifi/lib | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/components/esp_wifi/include/esp_wifi_types_generic.h b/components/esp_wifi/include/esp_wifi_types_generic.h index fdad2e1cbd12..97bb8542ed59 100644 --- a/components/esp_wifi/include/esp_wifi_types_generic.h +++ b/components/esp_wifi/include/esp_wifi_types_generic.h @@ -70,6 +70,8 @@ typedef enum { WIFI_AUTH_WAPI_PSK, /**< authenticate mode : WAPI_PSK */ WIFI_AUTH_OWE, /**< authenticate mode : OWE */ WIFI_AUTH_WPA3_ENT_192, /**< authenticate mode : WPA3_ENT_SUITE_B_192_BIT */ + 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. */ + 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.*/ WIFI_AUTH_DPP, /**< authenticate mode : DPP */ WIFI_AUTH_MAX } wifi_auth_mode_t; diff --git a/components/esp_wifi/lib b/components/esp_wifi/lib index deb0e65a7432..fff3460aafdc 160000 --- a/components/esp_wifi/lib +++ b/components/esp_wifi/lib @@ -1 +1 @@ -Subproject commit deb0e65a7432cf39915871ed65338bbfda1b6b55 +Subproject commit fff3460aafdcfef2d1890caa80c1855eb5fac327