2016-11-15 11:12:58 +08:00
|
|
|
menu "Example Configuration"
|
|
|
|
|
|
2021-02-11 00:46:28 +04: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 17:10:53 +01:00
|
|
|
string "Target Domain"
|
|
|
|
|
default "www.baidu.com"
|
|
|
|
|
help
|
|
|
|
|
Target domain for the example to connect to.
|
2016-11-15 11:12:58 +08:00
|
|
|
|
2021-02-11 00:46:28 +04:00
|
|
|
config EXAMPLE_OPENSSL_CLIENT_TARGET_PORT
|
|
|
|
|
string "Target port number"
|
|
|
|
|
default "443"
|
2019-01-25 17:10:53 +01:00
|
|
|
help
|
|
|
|
|
Target port number for the example to connect to.
|
2016-11-15 11:12:58 +08:00
|
|
|
|
2016-12-08 19:34:14 +08:00
|
|
|
endmenu
|