mirror of
https://github.com/espressif/esp-idf.git
synced 2025-08-09 20:41:14 +00:00
esp-tls: mark esp_tls_conn_delete API as deprecated
It is recommended to use `esp_tls_conn_destroy` API instead
This commit is contained in:
@@ -72,7 +72,7 @@ static void https_get_task(void *pvParameters)
|
||||
ESP_LOGE(TAG, "Could not connect to %s", web_urls[i]);
|
||||
}
|
||||
|
||||
esp_tls_conn_delete(tls);
|
||||
esp_tls_conn_destroy(tls);
|
||||
vTaskDelay(1000 / portTICK_PERIOD_MS);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user