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