Kconfig.projbuild 961 B

123456789101112131415161718192021222324252627282930313233343536
  1. menu "Example Configuration"
  2. config EXAMPLE_CLIENT
  3. bool "Enable TLS client"
  4. default y
  5. help
  6. Choose this option to use ASIO TLS/SSL client functionality
  7. config EXAMPLE_PORT
  8. string "ASIO port number"
  9. default "443"
  10. help
  11. Port number used by ASIO example.
  12. config EXAMPLE_SERVER
  13. bool "Enable TLS server"
  14. default n
  15. help
  16. Choose this option to use ASIO TLS/SSL server functionality
  17. config EXAMPLE_SERVER_NAME
  18. string "ASIO server name or IP"
  19. default "www.google.com"
  20. depends on EXAMPLE_CLIENT
  21. help
  22. Asio example server ip for the ASIO client to connect to.
  23. config EXAMPLE_CLIENT_VERIFY_PEER
  24. bool "Client to verify peer"
  25. default n
  26. depends on EXAMPLE_CLIENT
  27. help
  28. This option sets client's mode to verify peer, default is
  29. verify-none
  30. endmenu