Merge branch 'fix/make_scratch_buffer_dynamic' into 'master'

fix(esp_http_server): Make the http server scratch buffer dynamic

Closes IDF-11879

See merge request espressif/esp-idf!36651
This commit is contained in:
Mahavir Jain
2025-02-14 14:00:10 +08:00
17 changed files with 129 additions and 55 deletions
@@ -8,3 +8,4 @@ Migration from 5.4 to 5.5
system
peripherals
protocols
@@ -0,0 +1,12 @@
Protocols
=========
:link_to_translation:`zh_CN:[中文]`
ESP HTTP SERVER
---------------
:ref:`CONFIG_HTTPD_MAX_REQ_HDR_LEN`
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
The :ref:`CONFIG_HTTPD_MAX_REQ_HDR_LEN` option now defines the maximum limit for the memory that can be allocated internally for the HTTP request header. The actual memory allocated for the header will depend on the size of the header received in the HTTP request, rather than being fixed to this value which was the case previously. This provides more flexible memory usage based on the actual header size.
@@ -8,3 +8,4 @@
system
peripherals
protocols
@@ -0,0 +1,4 @@
协议
====
:link_to_translation:`en:[English]`