2018-10-02 10:33:16 -04:00
|
|
|
menu "Example Configuration"
|
|
|
|
|
2020-03-17 15:30:33 -04:00
|
|
|
config EXAMPLE_IPV4
|
|
|
|
bool "IPV4"
|
|
|
|
default y
|
2019-01-25 11:10:53 -05:00
|
|
|
|
2020-03-17 15:30:33 -04:00
|
|
|
config EXAMPLE_IPV6
|
|
|
|
bool "IPV6"
|
|
|
|
default n
|
|
|
|
select EXAMPLE_CONNECT_IPV6
|
2019-01-25 11:10:53 -05:00
|
|
|
|
|
|
|
config EXAMPLE_PORT
|
|
|
|
int "Port"
|
|
|
|
range 0 65535
|
|
|
|
default 3333
|
|
|
|
help
|
|
|
|
Local port the example server will listen on.
|
2018-10-02 10:33:16 -04:00
|
|
|
|
2021-02-02 22:27:06 -05:00
|
|
|
config EXAMPLE_KEEPALIVE_IDLE
|
|
|
|
int "TCP keep-alive idle time(s)"
|
|
|
|
default 5
|
|
|
|
help
|
|
|
|
Keep-alive idle time. In idle time without receiving any data from peer, will send keep-alive probe packet
|
|
|
|
|
|
|
|
config EXAMPLE_KEEPALIVE_INTERVAL
|
|
|
|
int "TCP keep-alive interval time(s)"
|
|
|
|
default 5
|
|
|
|
help
|
|
|
|
Keep-alive probe packet interval time.
|
|
|
|
|
|
|
|
config EXAMPLE_KEEPALIVE_COUNT
|
|
|
|
int "TCP keep-alive packet retry send counts"
|
|
|
|
default 3
|
|
|
|
help
|
|
|
|
Keep-alive probe packet retry count.
|
2018-10-02 10:33:16 -04:00
|
|
|
endmenu
|