| 1234567891011121314151617181920212223242526 |
- menu "Example Configuration"
- config EXAMPLE_USING_ESP_TLS_MBEDTLS
- bool
- depends on ESP_TLS_USING_MBEDTLS
- default y
- 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
|