Kconfig.projbuild 729 B

123456789101112131415161718192021
  1. menu "Example Configuration"
  2. config EXAMPLE_CLIENT_SESSION_TICKETS
  3. bool "Enable Client session ticket support"
  4. default n
  5. select ESP_TLS_CLIENT_SESSION_TICKETS
  6. help
  7. Enable the client session ticket support for the example.
  8. config EXAMPLE_LOCAL_SERVER_URL
  9. string "Local Server URL for testing session tickets"
  10. default "https://192.168.0.106:8070"
  11. depends on EXAMPLE_CLIENT_SESSION_TICKETS
  12. help
  13. The url of the server to which the example is going to connect in order to test the session ticket support.
  14. config EXAMPLE_LOCAL_SERVER_URL_FROM_STDIN
  15. bool
  16. default y if EXAMPLE_LOCAL_SERVER_URL = "FROM_STDIN"
  17. endmenu