nuttx-apps/netutils/ftpd/Kconfig
Petro Karashchenko c1dfaf42ff netutils/ftpd: add option to login to FTPD using FSUTILS_PASSWD
Signed-off-by: Petro Karashchenko <petro.karashchenko@gmail.com>
2022-03-28 23:30:45 +08:00

30 lines
717 B
Plaintext

#
# For a description of the syntax of this configuration file,
# see the file kconfig-language.txt in the NuttX tools repository.
#
config NETUTILS_FTPD
bool "FTP server"
default n
depends on NET_TCP
---help---
Enable support for the FTP server.
if NETUTILS_FTPD
config FTPD_WORKERSTACKSIZE
int "FTPD server thread stack size"
default DEFAULT_TASK_STACKSIZE
config FTPD_LOGIN_PASSWD
bool "Verify FTPD server login with encrypted password file"
default n
depends on FSUTILS_PASSWD
---help---
Use the content of an encrypted password file to verify user
credentials. This option requires that you have selected
CONFIG_FSUTILS_PASSWD to enable the access methods of
apps/fsutils/passwd.
endif