c1dfaf42ff
Signed-off-by: Petro Karashchenko <petro.karashchenko@gmail.com>
30 lines
717 B
Plaintext
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
|