mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
823abfdfd5
Closes IDF-1156
29 lines
800 B
Plaintext
29 lines
800 B
Plaintext
menu "Example Configuration"
|
|
|
|
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
|
|
string "Target Domain"
|
|
default "www.baidu.com"
|
|
help
|
|
Target domain for the example to connect to.
|
|
|
|
config EXAMPLE_OPENSSL_CLIENT_TARGET_PORT
|
|
string "Target port number"
|
|
default "443"
|
|
help
|
|
Target port number for the example to connect to.
|
|
|
|
endmenu
|