Kconfig 417 B

123456789101112131415
  1. menu "HTTP Server"
  2. config HTTPD_MAX_REQ_HDR_LEN
  3. int "Max HTTP Request Header Length"
  4. default 512
  5. help
  6. This sets the maximum supported size of headers section in HTTP request packet to be processed by the server
  7. config HTTPD_MAX_URI_LEN
  8. int "Max HTTP URI Length"
  9. default 512
  10. help
  11. This sets the maximum supported size of HTTP request URI to be processed by the server
  12. endmenu