From 99da2b8c2d080d7adc5442f378e54bc2e44e4579 Mon Sep 17 00:00:00 2001 From: "hrushikesh.bhosale" Date: Thu, 26 Jun 2025 16:22:50 +0530 Subject: [PATCH] feat(esp_tls): Added hidden config in esp-tls for dynamic buffer strategy configuration Added the hidden config in the esp-tls component for the dynamic buffer strategy configuration feature. So that external components like ota can findout whether this feature is supported or not --- components/esp-tls/Kconfig | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/components/esp-tls/Kconfig b/components/esp-tls/Kconfig index 81d5a365fc..1fa28008fd 100644 --- a/components/esp-tls/Kconfig +++ b/components/esp-tls/Kconfig @@ -114,4 +114,12 @@ menu "ESP-TLS" Enable a fuller set of OCSP checks: checking revocation status of intermediate certificates, optional fallbacks to CRLs, etc. + config ESP_TLS_DYN_BUF_STRATEGY_SUPPORTED + bool + default y + help + Enable support for dynamic buffer strategy for ESP-TLS. This is the hidden config option kept + for external components like OTA, to find out whether the dynamic buffer strategy is supported + for particular ESP-IDF version. + endmenu