2021-11-12 05:18:53 -05:00
|
|
|
menu "Example Configuration"
|
|
|
|
|
2023-10-19 02:52:45 -04:00
|
|
|
config EXAMPLE_USING_ESP_TLS_MBEDTLS
|
|
|
|
bool
|
|
|
|
depends on ESP_TLS_USING_MBEDTLS
|
|
|
|
default y
|
|
|
|
|
2021-11-12 05:18:53 -05:00
|
|
|
config EXAMPLE_CLIENT_SESSION_TICKETS
|
|
|
|
bool "Enable Client session ticket support"
|
|
|
|
default n
|
|
|
|
select ESP_TLS_CLIENT_SESSION_TICKETS
|
|
|
|
help
|
|
|
|
Enable the client session ticket support for the example.
|
|
|
|
|
|
|
|
config EXAMPLE_LOCAL_SERVER_URL
|
|
|
|
string "Local Server URL for testing session tickets"
|
|
|
|
default "https://192.168.0.106:8070"
|
|
|
|
depends on EXAMPLE_CLIENT_SESSION_TICKETS
|
|
|
|
help
|
|
|
|
The url of the server to which the example is going to connect in order to test the session ticket support.
|
|
|
|
|
|
|
|
config EXAMPLE_LOCAL_SERVER_URL_FROM_STDIN
|
|
|
|
bool
|
|
|
|
default y if EXAMPLE_LOCAL_SERVER_URL = "FROM_STDIN"
|
|
|
|
|
|
|
|
endmenu
|