From 2b8703ef9f096468b0e070c50f4b87330ec85934 Mon Sep 17 00:00:00 2001 From: Ashish Sharma Date: Thu, 14 Aug 2025 11:22:30 +0800 Subject: [PATCH] fix(mbedtls): enable ssl cookie support by default --- components/mbedtls/Kconfig | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/components/mbedtls/Kconfig b/components/mbedtls/Kconfig index fecf6ba297..99d6123bca 100644 --- a/components/mbedtls/Kconfig +++ b/components/mbedtls/Kconfig @@ -849,9 +849,10 @@ menu "mbedTLS" menu "DTLS-based configurations" depends on MBEDTLS_SSL_PROTO_DTLS + config MBEDTLS_SSL_COOKIE_C bool "Enable SSL session cookie" - default n + default y help Enable basic DTLS cookie implementation for hello verification.