mirror of
https://github.com/espressif/esp-idf.git
synced 2025-08-14 22:16:46 +00:00

1. In async handler example, on hitting /long URI and closing the connection forcefully from client (example ctrl + c) cause more stack size (almost 200 bytes) than successfull request. 2. The connection should be closed from the server as soon as the client closes the connect (i.e. handler should return ESP_FAIL to close the connection)
17 lines
445 B
Plaintext
17 lines
445 B
Plaintext
menu "Example Configuration"
|
|
|
|
config EXAMPLE_MAX_ASYNC_REQUESTS
|
|
int "Max Simultaneous Requests"
|
|
default 2
|
|
help
|
|
The maximum number of simultaneous async requests that the
|
|
web server can handle.
|
|
|
|
config EXAMPLE_ASYNC_WORKER_TASK_STACK_SIZE
|
|
int "Async Worker Task Stack Size"
|
|
default 2560
|
|
help
|
|
The stack size allocated for each async worker task.
|
|
|
|
endmenu
|