feat(wpa_supplicant): Add support for Opportunistic Key Caching

This commit is contained in:
Aditi
2025-02-11 15:09:31 +05:30
parent 23398bdc93
commit 73c6112156
4 changed files with 45 additions and 7 deletions

View File

@@ -1,5 +1,5 @@
/*
* SPDX-FileCopyrightText: 2023 Espressif Systems (Shanghai) CO LTD
* SPDX-FileCopyrightText: 2023-2025 Espressif Systems (Shanghai) CO LTD
*
* SPDX-License-Identifier: Apache-2.0
*/
@@ -319,6 +319,13 @@ esp_err_t esp_eap_client_set_fast_params(esp_eap_fast_config config);
*/
esp_err_t esp_eap_client_use_default_cert_bundle(bool use_default_bundle);
/**
* @brief Set Opportunistic key caching support for station.
*
* @param enable Boolean indicating whether to enable (true) or disable (false) OKC support.
*/
void esp_wifi_set_okc_support(bool enable);
#ifdef __cplusplus
}
#endif