2016-11-14 22:12:58 -05:00
|
|
|
menu "Example Configuration"
|
|
|
|
|
2021-02-10 15:46:28 -05:00
|
|
|
choice EXAMPLE_OPENSSL_CLIENT_URI_SOURCE
|
|
|
|
prompt "SSL Client URI source"
|
|
|
|
default EXAMPLE_OPENSSL_CLIENT_URI_FROM_STRING
|
|
|
|
help
|
|
|
|
Selects the source of the URI used in the example.
|
|
|
|
|
|
|
|
config EXAMPLE_OPENSSL_CLIENT_URI_FROM_STRING
|
|
|
|
bool "From string"
|
|
|
|
|
|
|
|
config EXAMPLE_OPENSSL_CLIENT_URI_FROM_STDIN
|
|
|
|
bool "From stdin"
|
|
|
|
endchoice
|
|
|
|
|
|
|
|
config EXAMPLE_OPENSSL_CLIENT_TARGET_DOMAIN
|
2019-01-25 11:10:53 -05:00
|
|
|
string "Target Domain"
|
|
|
|
default "www.baidu.com"
|
|
|
|
help
|
|
|
|
Target domain for the example to connect to.
|
2016-11-14 22:12:58 -05:00
|
|
|
|
2021-02-10 15:46:28 -05:00
|
|
|
config EXAMPLE_OPENSSL_CLIENT_TARGET_PORT
|
|
|
|
string "Target port number"
|
|
|
|
default "443"
|
2019-01-25 11:10:53 -05:00
|
|
|
help
|
|
|
|
Target port number for the example to connect to.
|
2016-11-14 22:12:58 -05:00
|
|
|
|
2016-12-08 06:34:14 -05:00
|
|
|
endmenu
|