nuttx-apps/system/telnetd/Kconfig
raiden00pl d521d2ea57 telnetd/Kconfig: cosmetic change
With this change `# CONFIG_SYSTEM_TELNETD_PORT is not set` will not be present
in the generated `.config` file if telnetd is disabled.
2023-05-13 10:15:02 -03:00

46 lines
1.0 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
if SYSTEM_TELNETD
config SYSTEM_TELNETD_PROGNAME
string "Telnetd program name"
default "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
config SYSTEM_TELNETD_STACKSIZE
int "Telnetd task stack size"
default DEFAULT_TASK_STACKSIZE
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
config SYSTEM_TELNETD_SESSION_STACKSIZE
int "Telnetd session task stack size"
default 3072
endif # SYSTEM_TELNETD