mirror of
https://github.com/espressif/esp-idf.git
synced 2026-08-18 06:35:35 +03:00
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:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user