File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed
components/esp_http_client/include Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -263,6 +263,9 @@ esp_http_client_handle_t esp_http_client_init(const esp_http_client_config_t *co
263263 * @return
264264 * - ESP_OK on successful
265265 * - ESP_FAIL on error
266+ * - ESP_ERR_HTTP_CONNECTING is timed-out before connection is made
267+ * - ESP_ERR_HTTP_WRITE_DATA is timed-out before request fully sent
268+ * - ESP_ERR_HTTP_EAGAIN is timed-out before any data was ready
266269 */
267270esp_err_t esp_http_client_perform (esp_http_client_handle_t client );
268271
@@ -507,6 +510,7 @@ esp_err_t esp_http_client_delete_all_headers(esp_http_client_handle_t client);
507510 * @return
508511 * - ESP_OK
509512 * - ESP_FAIL
513+ * - ESP_ERR_HTTP_CONNECTING if timed-out before connection is made
510514 */
511515esp_err_t esp_http_client_open (esp_http_client_handle_t client , int write_len );
512516
You can’t perform that action at this time.
0 commit comments