fix: Update https_mbedtls example to fix TLS v1.2 connection

This commit is contained in:
Harshit Malpani 2023-10-05 12:10:46 +05:30
parent 90d0689331
commit 5f18e58722
No known key found for this signature in database
GPG Key ID: 441A8ACC7853D493

View File

@ -128,10 +128,6 @@ static void https_get_task(void *pvParameters)
mbedtls_esp_enable_debug_log(&conf, CONFIG_MBEDTLS_DEBUG_LEVEL);
#endif
#ifdef CONFIG_MBEDTLS_SSL_PROTO_TLS1_3
mbedtls_ssl_conf_min_tls_version(&conf, MBEDTLS_SSL_VERSION_TLS1_3);
mbedtls_ssl_conf_max_tls_version(&conf, MBEDTLS_SSL_VERSION_TLS1_3);
#endif
if ((ret = mbedtls_ssl_setup(&ssl, &conf)) != 0)
{
ESP_LOGE(TAG, "mbedtls_ssl_setup returned -0x%x\n\n", -ret);