You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* must be set while making a call to esp_http_client_init() API.
250
250
* You can do any amount of calls to esp_http_client_perform while using the same esp_http_client_handle_t. The underlying connection may be kept open if the server allows it.
251
251
* If you intend to transfer more than one file, you are even encouraged to do so.
252
-
* esp_http_client will then attempt to re-use the same connection for the following transfers, thus making the operations faster, less CPU intense and using less network resources.
252
+
* esp_http_client will then attempt to reuse the same connection for the following transfers, thus making the operations faster, less CPU intense and using less network resources.
253
253
* Just note that you will have to use `esp_http_client_set_**` between the invokes to set options for the following esp_http_client_perform.
254
254
*
255
255
* @note You must never call this function simultaneously from two places using the same client handle.
* When received the 30x code from the server, the client stores the redirect URL provided by the server.
614
614
* This function will set the current URL to redirect to enable client to execute the redirection request.
615
-
* When `disable_auto_redirect` is set, the client will not call this function but the event `HTTP_EVENT_REDIRECT` will be dispatched giving the user contol over the redirection event.
615
+
* When `disable_auto_redirect` is set, the client will not call this function but the event `HTTP_EVENT_REDIRECT` will be dispatched giving the user control over the redirection event.
* @brief On receiving a custom authentication header, this API can be invoked to set the
627
639
* authentication information from the header. This API can be called from the event
@@ -676,7 +688,7 @@ int esp_http_client_read_response(esp_http_client_handle_t client, char *buffer,
676
688
/**
677
689
* @brief Process all remaining response data
678
690
* This uses an internal buffer to repeatedly receive, parse, and discard response data until complete data is processed.
679
-
* As no additional user-supplied buffer is required, this may be preferrable to `esp_http_client_read_response` in situations where the content of the response may be ignored.
691
+
* As no additional user-supplied buffer is required, this may be preferable to `esp_http_client_read_response` in situations where the content of the response may be ignored.
0 commit comments