2018-10-02 14:33:16 +00:00
|
|
|
menu "Example Configuration"
|
|
|
|
|
2019-01-25 16:10:53 +00:00
|
|
|
choice EXAMPLE_IP_MODE
|
|
|
|
prompt "IP Version"
|
|
|
|
help
|
|
|
|
Example can use either IPV4 or IPV6.
|
|
|
|
|
|
|
|
config EXAMPLE_IPV4
|
|
|
|
bool "IPV4"
|
|
|
|
|
|
|
|
config EXAMPLE_IPV6
|
|
|
|
bool "IPV6"
|
2018-11-20 16:41:08 +00:00
|
|
|
select EXAMPLE_CONNECT_IPV6
|
2019-01-25 16:10:53 +00:00
|
|
|
|
|
|
|
endchoice
|
|
|
|
|
|
|
|
config EXAMPLE_PORT
|
|
|
|
int "Port"
|
|
|
|
range 0 65535
|
|
|
|
default 3333
|
|
|
|
help
|
|
|
|
Local port the example server will listen on.
|
2018-10-02 14:33:16 +00:00
|
|
|
|
|
|
|
endmenu
|