forked from espressif/arduino-esp32
Update IDF Libs
This commit is contained in:
@ -525,6 +525,19 @@ int esp_http_client_read_response(esp_http_client_handle_t client, char *buffer,
|
||||
|
||||
esp_err_t esp_http_client_get_url(esp_http_client_handle_t client, char *url, const int len);
|
||||
|
||||
/**
|
||||
* @brief Get Chunk-Length from client
|
||||
*
|
||||
* @param[in] client The esp_http_client handle
|
||||
* @param[out] len Variable to store length
|
||||
*
|
||||
* @return
|
||||
* - ESP_OK If successful, len will have length of current chunk
|
||||
* - ESP_FAIL If the server is not a chunked server
|
||||
* - ESP_ERR_INVALID_ARG If the client or len are NULL
|
||||
*/
|
||||
esp_err_t esp_http_client_get_chunk_length(esp_http_client_handle_t client, int *len);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user