2015-09-03 02:18:47 +02:00
|
|
|
#
|
|
|
|
# For a description of the syntax of this configuration file,
|
|
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
|
|
|
#
|
|
|
|
|
|
|
|
config EXAMPLES_NETLOOP
|
2018-09-03 17:29:56 +02:00
|
|
|
tristate "Local loopback example"
|
2015-09-03 02:18:47 +02:00
|
|
|
default n
|
2020-01-15 14:48:38 +01:00
|
|
|
depends on NET_LOOPBACK && NET_TCP && NET_TCPBACKLOG && NET_TCP_WRITE_BUFFERS && NET_IPv4
|
2015-09-03 02:18:47 +02:00
|
|
|
---help---
|
|
|
|
Enable the local loopback example
|
|
|
|
|
|
|
|
if EXAMPLES_NETLOOP
|
2015-09-03 16:19:15 +02:00
|
|
|
|
2018-03-12 20:34:41 +01:00
|
|
|
config EXAMPLES_NETLOOP_KEEPALIVE
|
2019-10-06 05:37:19 +02:00
|
|
|
bool "Enable TCP KeepAlive test"
|
|
|
|
default n
|
|
|
|
depends on NET_TCP_KEEPALIVE
|
2018-03-12 20:34:41 +01:00
|
|
|
|
2015-09-03 16:19:15 +02:00
|
|
|
config EXAMPLES_NETLOOP_STACKSIZE
|
2019-10-06 05:37:19 +02:00
|
|
|
int "Loopback test stack size"
|
2020-03-27 06:10:33 +01:00
|
|
|
default DEFAULT_TASK_STACKSIZE
|
2015-09-03 16:19:15 +02:00
|
|
|
|
|
|
|
config EXAMPLES_NETLOOP_PRIORITY
|
2019-10-06 05:37:19 +02:00
|
|
|
int "Loopback test task priority"
|
|
|
|
default 100
|
2015-09-03 16:19:15 +02:00
|
|
|
|
2015-09-03 02:18:47 +02:00
|
|
|
endif # EXAMPLES_NETLOOP
|