Kconfig 830 B

1234567891011121314151617181920212223
  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
  7. server
  8. config HTTPD_MAX_URI_LEN
  9. int "Max HTTP URI Length"
  10. default 512
  11. help
  12. This sets the maximum supported size of HTTP request URI to be processed by the server
  13. config HTTPD_ERR_RESP_NO_DELAY
  14. bool "Use TCP_NODELAY socket option when sending HTTP error responses"
  15. default y
  16. help
  17. Using TCP_NODEALY socket option ensures that HTTP error response reaches the client before the
  18. underlying socket is closed. Please note that turning this off may cause multiple test failures
  19. endmenu