Home
last modified time | relevance | path

Searched refs:max_http_request_size (Results 1 – 4 of 4) sorted by relevance

/hal_espressif-3.4.0/components/esp_https_ota/src/
Desp_https_ota.c36 int max_http_request_size; member
196 …ps_ota_handle->max_http_request_size = (ota_config->max_http_request_size == 0) ? DEFAULT_REQUEST_… in esp_https_ota_begin()
224 if (https_ota_handle->image_length > https_ota_handle->max_http_request_size) { in esp_https_ota_begin()
226 asprintf(&header_val, "bytes=0-%d", https_ota_handle->max_http_request_size - 1); in esp_https_ota_begin()
440 if ((handle->image_length - handle->binary_file_len) > handle->max_http_request_size) { in esp_https_ota_perform()
441 …es=%d-%d", handle->binary_file_len, (handle->binary_file_len + handle->max_http_request_size - 1)); in esp_https_ota_perform()
/hal_espressif-3.4.0/docs/en/api-reference/system/
Desp_https_ota.rst37 Maximum content length of each request can be specified by setting ``max_http_request_size`` to req…
42 …dTLS Rx buffer size is set to 16K. By using partial_http_download with max_http_request_size of 4K,
/hal_espressif-3.4.0/components/esp_https_ota/include/
Desp_https_ota.h35 …int max_http_request_size; /*!< Maximum request size for partial HTTP download… member
/hal_espressif-3.4.0/examples/system/ota/advanced_https_ota/main/
Dadvanced_https_ota_example.c119 .max_http_request_size = CONFIG_EXAMPLE_HTTP_REQUEST_SIZE, in advanced_ota_example_task()