nuttx-apps/system/telnetd/Kconfig
Xiang Xiao 36a0c924f7 netutils: Support telnetd in the kernel mode
Signed-off-by: Xiang Xiao <xiaoxiang@xiaomi.com>
Signed-off-by: chao an <anchao@xiaomi.com>
2022-11-07 15:24:08 +09:00

47 lines
1.1 KiB
Plaintext

#
# For a description of the syntax of this configuration file,
# see the file kconfig-language.txt in the NuttX tools repository.
#
config SYSTEM_TELNETD
tristate "Telnet daemon application"
default !DEFAULT_SMALL
depends on NETUTILS_TELNETD
---help---
Enable the Telnet daemon application
config SYSTEM_TELNETD_PROGNAME
string "Telnetd program name"
default "telnetd"
depends on SYSTEM_TELNETD
---help---
This is the name of the program that will be used when the NSH ELF
program is installed.
config SYSTEM_TELNETD_PRIORITY
int "Telnetd task priority"
default 100
depends on SYSTEM_TELNETD
config SYSTEM_TELNETD_STACKSIZE
int "Telnetd task stack size"
default DEFAULT_TASK_STACKSIZE
depends on SYSTEM_TELNETD
config SYSTEM_TELNETD_PORT
int "Telnetd port number"
default 23
---help---
The telnet daemon will listen on this TCP port number for connections.
Default: 23
config SYSTEM_TELNETD_SESSION_PRIORITY
int "Telnetd session task priority"
default 100
depends on SYSTEM_TELNETD
config SYSTEM_TELNETD_SESSION_STACKSIZE
int "Telnetd session task stack size"
default 3072
depends on SYSTEM_TELNETD