Kconfig.projbuild 843 B

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