Merge branch 'fix/fix_dynamic_buffer_with_tls1_3' into 'master'

fix: fixes failing dynamic buffer tests

Closes IDFCI-5130

See merge request espressif/esp-idf!45150
This commit is contained in:
Mahavir Jain
2026-03-05 18:35:32 +05:30
12 changed files with 56 additions and 150 deletions

View File

@@ -431,6 +431,7 @@ static void https_with_url(void)
.url = "https://www.howsmyssl.com",
.event_handler = _http_event_handler,
.crt_bundle_attach = esp_crt_bundle_attach,
.timeout_ms = 5000,
};
ESP_LOGI(TAG, "HTTPS request with url =>");
esp_http_client_handle_t client = esp_http_client_init(&config);
@@ -477,6 +478,7 @@ static void https_with_hostname_path(void)
.transport_type = HTTP_TRANSPORT_OVER_SSL,
.event_handler = _http_event_handler,
.cert_pem = howsmyssl_com_root_cert_pem_start,
.timeout_ms = 5000,
};
ESP_LOGI(TAG, "HTTPS request with hostname and path =>");
esp_http_client_handle_t client = esp_http_client_init(&config);