From ecafe007e54a42c95531d5d4164e799f5db492ce Mon Sep 17 00:00:00 2001 From: Sarvesh Bodakhe Date: Mon, 5 Dec 2022 14:44:38 +0530 Subject: [PATCH] esp_wifi: Update wifi libs Update wifi libs with below changes - 1. reject AP when assoc comeback time given is greater than 5 seconds 2. handle when assoc req is received before SA query procedure is finished Closes https://github.com/espressif/esp-idf/issues/9428 --- components/esp_wifi/include/esp_wifi_types.h | 1 + components/esp_wifi/lib | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/components/esp_wifi/include/esp_wifi_types.h b/components/esp_wifi/include/esp_wifi_types.h index 4d32995e8f89..bbbef84cecd3 100644 --- a/components/esp_wifi/include/esp_wifi_types.h +++ b/components/esp_wifi/include/esp_wifi_types.h @@ -120,6 +120,7 @@ typedef enum { WIFI_REASON_CONNECTION_FAIL = 205, WIFI_REASON_AP_TSF_RESET = 206, WIFI_REASON_ROAMING = 207, + WIFI_REASON_ASSOC_COMEBACK_TIME_TOO_LONG = 208, } wifi_err_reason_t; typedef enum { diff --git a/components/esp_wifi/lib b/components/esp_wifi/lib index d30a8ea9e1d5..39bcc426a6ab 160000 --- a/components/esp_wifi/lib +++ b/components/esp_wifi/lib @@ -1 +1 @@ -Subproject commit d30a8ea9e1d58e0d9e0b8e1eb9dcf27e3d43a1fb +Subproject commit 39bcc426a6abc6dd7b1f1eb45f2c1bd8f6e0e778