2018-07-03 10:57:41 +00:00
|
|
|
menu "HTTP Server"
|
|
|
|
|
2019-01-25 16:10:53 +00:00
|
|
|
config HTTPD_MAX_REQ_HDR_LEN
|
|
|
|
int "Max HTTP Request Header Length"
|
|
|
|
default 512
|
|
|
|
help
|
|
|
|
This sets the maximum supported size of headers section in HTTP request packet to be processed by the
|
|
|
|
server
|
2018-07-03 10:57:41 +00:00
|
|
|
|
2019-01-25 16:10:53 +00:00
|
|
|
config HTTPD_MAX_URI_LEN
|
|
|
|
int "Max HTTP URI Length"
|
|
|
|
default 512
|
|
|
|
help
|
|
|
|
This sets the maximum supported size of HTTP request URI to be processed by the server
|
2018-07-03 10:57:41 +00:00
|
|
|
|
2019-02-01 12:17:41 +00:00
|
|
|
config HTTPD_ERR_RESP_NO_DELAY
|
|
|
|
bool "Use TCP_NODELAY socket option when sending HTTP error responses"
|
|
|
|
default y
|
|
|
|
help
|
|
|
|
Using TCP_NODEALY socket option ensures that HTTP error response reaches the client before the
|
|
|
|
underlying socket is closed. Please note that turning this off may cause multiple test failures
|
|
|
|
|
2018-07-03 10:57:41 +00:00
|
|
|
endmenu
|