From 576489f8cf3baf21800eff9cb771675f9f950a7a Mon Sep 17 00:00:00 2001 From: jgujarathi Date: Mon, 24 Apr 2023 10:36:15 +0530 Subject: [PATCH] wpa_supplicant : Add MBO ie in probe request. Adds the MBO information element in the probe request frame by resetting scan_ie after set_config is done. --- components/wpa_supplicant/esp_supplicant/src/esp_wpa_main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/wpa_supplicant/esp_supplicant/src/esp_wpa_main.c b/components/wpa_supplicant/esp_supplicant/src/esp_wpa_main.c index 889cb2ef0b..092d29d8d3 100644 --- a/components/wpa_supplicant/esp_supplicant/src/esp_wpa_main.c +++ b/components/wpa_supplicant/esp_supplicant/src/esp_wpa_main.c @@ -214,7 +214,7 @@ int wpa_sta_connect(uint8_t *bssid) void wpa_config_done(void) { - /* used in future for setting scan and assoc IEs */ + esp_set_scan_ie(); } int wpa_parse_wpa_ie_wrapper(const u8 *wpa_ie, size_t wpa_ie_len, wifi_wpa_ie_t *data)