2019-05-28 07:25:49 -04:00
|
|
|
menu "ESP HTTPS server"
|
|
|
|
|
|
|
|
config ESP_HTTPS_SERVER_ENABLE
|
|
|
|
bool "Enable ESP_HTTPS_SERVER component"
|
2022-12-15 05:33:58 -05:00
|
|
|
depends on (ESP_TLS_USING_MBEDTLS && MBEDTLS_TLS_SERVER)
|
2019-05-28 07:25:49 -04:00
|
|
|
help
|
|
|
|
Enable ESP HTTPS server component
|
|
|
|
|
2024-05-02 05:57:19 -04:00
|
|
|
config ESP_HTTPS_SERVER_EVENT_POST_TIMEOUT
|
|
|
|
int "Time in millisecond to wait for posting event"
|
|
|
|
default 2000
|
|
|
|
help
|
|
|
|
This config option helps in setting the time in millisecond to wait for event to be posted to the
|
|
|
|
system default event loop. Set it to -1 if you need to set timeout to portMAX_DELAY.
|
|
|
|
|
2019-05-28 07:25:49 -04:00
|
|
|
endmenu
|