nuttx-apps/system/tcpdump/Kconfig
yangjianqing 5a04b9a7c9 tcpdump:fix tcpdump stack overflow bug
Signed-off-by: yangjianqing <yangjianqing@xiaomi.com>
2024-08-22 01:28:27 +08:00

32 lines
656 B
Plaintext

#
# For a description of the syntax of this configuration file,
# see the file kconfig-language.txt in the NuttX tools repository.
#
config SYSTEM_TCPDUMP
tristate "tcpdump command"
default n
depends on NET_PKT
select SYSTEM_ARGTABLE3
---help---
Enable support for the 'tcpdump' command.
if SYSTEM_TCPDUMP
config SYSTEM_TCPDUMP_PROGNAME
string "tcpdump program name"
default "tcpdump"
---help---
This is the name of the program that will be used when the NSH ELF
program is installed.
config SYSTEM_TCPDUMP_PRIORITY
int "tcpdump task priority"
default 100
config SYSTEM_TCPDUMP_STACKSIZE
int "tcpdump stack size"
default 4096
endif