aboutsummaryrefslogtreecommitdiff
path: root/networking/ftpd.c
diff options
context:
space:
mode:
Diffstat (limited to 'networking/ftpd.c')
-rw-r--r--networking/ftpd.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/networking/ftpd.c b/networking/ftpd.c
index e923e78b2..aee00e1c3 100644
--- a/networking/ftpd.c
+++ b/networking/ftpd.c
@@ -15,32 +15,32 @@
15//config: bool "ftpd (30 kb)" 15//config: bool "ftpd (30 kb)"
16//config: default y 16//config: default y
17//config: help 17//config: help
18//config: Simple FTP daemon. You have to run it via inetd. 18//config: Simple FTP daemon. You have to run it via inetd.
19//config: 19//config:
20//config:config FEATURE_FTPD_WRITE 20//config:config FEATURE_FTPD_WRITE
21//config: bool "Enable upload commands" 21//config: bool "Enable upload commands"
22//config: default y 22//config: default y
23//config: depends on FTPD 23//config: depends on FTPD
24//config: help 24//config: help
25//config: Enable all kinds of FTP upload commands (-w option) 25//config: Enable all kinds of FTP upload commands (-w option)
26//config: 26//config:
27//config:config FEATURE_FTPD_ACCEPT_BROKEN_LIST 27//config:config FEATURE_FTPD_ACCEPT_BROKEN_LIST
28//config: bool "Enable workaround for RFC-violating clients" 28//config: bool "Enable workaround for RFC-violating clients"
29//config: default y 29//config: default y
30//config: depends on FTPD 30//config: depends on FTPD
31//config: help 31//config: help
32//config: Some ftp clients (among them KDE's Konqueror) issue illegal 32//config: Some ftp clients (among them KDE's Konqueror) issue illegal
33//config: "LIST -l" requests. This option works around such problems. 33//config: "LIST -l" requests. This option works around such problems.
34//config: It might prevent you from listing files starting with "-" and 34//config: It might prevent you from listing files starting with "-" and
35//config: it increases the code size by ~40 bytes. 35//config: it increases the code size by ~40 bytes.
36//config: Most other ftp servers seem to behave similar to this. 36//config: Most other ftp servers seem to behave similar to this.
37//config: 37//config:
38//config:config FEATURE_FTPD_AUTHENTICATION 38//config:config FEATURE_FTPD_AUTHENTICATION
39//config: bool "Enable authentication" 39//config: bool "Enable authentication"
40//config: default y 40//config: default y
41//config: depends on FTPD 41//config: depends on FTPD
42//config: help 42//config: help
43//config: Enable basic system login as seen in telnet etc. 43//config: Enable basic system login as seen in telnet etc.
44 44
45//applet:IF_FTPD(APPLET(ftpd, BB_DIR_USR_SBIN, BB_SUID_DROP)) 45//applet:IF_FTPD(APPLET(ftpd, BB_DIR_USR_SBIN, BB_SUID_DROP))
46 46