aboutsummaryrefslogtreecommitdiff
path: root/networking/Config.in
diff options
context:
space:
mode:
Diffstat (limited to 'networking/Config.in')
-rw-r--r--networking/Config.in113
1 files changed, 112 insertions, 1 deletions
diff --git a/networking/Config.in b/networking/Config.in
index 22676c085..527aebbac 100644
--- a/networking/Config.in
+++ b/networking/Config.in
@@ -41,6 +41,15 @@ config CONFIG_HTTPD
41 help 41 help
42 Serve web pages via an HTTP server. 42 Serve web pages via an HTTP server.
43 43
44config CONFIG_FEATURE_HTTPD_USAGE_FROM_INETD_ONLY
45 bool " Support call from inetd only"
46 default n
47 depends on CONFIG_HTTPD
48 help
49 This option disabling uid and port options for httpd applet
50 and more others reducing size moments, but require
51 internet superserver daemon for usaging.
52
44config CONFIG_FEATURE_HTTPD_BASIC_AUTH 53config CONFIG_FEATURE_HTTPD_BASIC_AUTH
45 bool " Enable Basic Authentication and IP address checking" 54 bool " Enable Basic Authentication and IP address checking"
46 default n 55 default n
@@ -49,6 +58,66 @@ config CONFIG_FEATURE_HTTPD_BASIC_AUTH
49 Utilizes /etc/httpd.conf for security settings allowing 58 Utilizes /etc/httpd.conf for security settings allowing
50 ip address filtering and basic authentication on a per url basis. 59 ip address filtering and basic authentication on a per url basis.
51 60
61config CONFIG_FEATURE_HTTPD_CGI
62 bool " Enable support Common Gateway Interface"
63 default n
64 depends on CONFIG_HTTPD
65 help
66 Disable this for do very small module
67
68config CONFIG_FEATURE_HTTPD_RELOAD_CONFIG_SIGHUP
69 bool " Enable support reload global config file after hup signaled"
70 default n
71 depends on CONFIG_HTTPD
72 help
73 Disable this for do very small module
74
75config CONFIG_FEATURE_HTTPD_SETUID
76 bool " Enable support -u user option"
77 default n
78 depends on CONFIG_HTTPD
79 help
80 Require for drop privilegies after bind() to privilegies port
81
82config CONFIG_FEATURE_HTTPD_CONFIG_WITH_MIME_TYPES
83 bool " Enable support load from config file mime types"
84 default n
85 depends on CONFIG_HTTPD
86 help
87 After set this you can adding or change mime types from file
88 suffixes in config files
89
90config CONFIG_FEATURE_HTTPD_SET_REMOTE_PORT_TO_ENV
91 bool " Enable support set eviroment REMOTE_PORT"
92 default n
93 depends on CONFIG_FEATURE_HTTPD_CGI
94 help
95 After set this your CGI script can know own remote port connecting
96
97config CONFIG_FEATURE_HTTPD_SET_CGI_VARS_TO_ENV
98 bool " Enable support nonstandart httpd feature set CGI_var=value"
99 default n
100 depends on CONFIG_FEATURE_HTTPD_CGI
101 help
102 After set this your CGI script can have trivial parse getted vars
103
104config CONFIG_FEATURE_HTTPD_DECODE_URL_STR
105 bool " Support nonstandart httpd feature decode URL to stdout"
106 default n
107 depends on CONFIG_HTTPD
108 help
109 After set this your can decode URL from -d argument to stdout,
110 example -d "Hello%20World" as "Hello World"
111
112config CONFIG_FEATURE_HTTPD_ENCODE_URL_STR
113 bool " Support nonstandart httpd feature encode argument to URL"
114 default n
115 depends on CONFIG_HTTPD
116 help
117 After set this your can encode from -d argument to stdout as URL,
118 example -e "<Hello World>" as "%3CHello%20World%3E"
119
120
52config CONFIG_IFCONFIG 121config CONFIG_IFCONFIG
53 bool "ifconfig" 122 bool "ifconfig"
54 default n 123 default n
@@ -132,6 +201,48 @@ config CONFIG_FEATURE_IFUPDOWN_MAPPING
132 This enables support for the "mapping" stanza, unless you have 201 This enables support for the "mapping" stanza, unless you have
133 a weird network setup you dont need it. 202 a weird network setup you dont need it.
134 203
204config CONFIG_INETD
205 bool "inetd"
206 default n
207 help
208 Internet superserver daemon
209
210config CONFIG_FEATURE_INETD_SUPPORT_BILTIN_ECHO
211 bool " Support echo service"
212 default y
213 depends on CONFIG_INETD
214 help
215 Echo received data internal inetd service
216
217config CONFIG_FEATURE_INETD_SUPPORT_BILTIN_DISCARD
218 bool " Support discard service"
219 default y
220 depends on CONFIG_INETD
221 help
222 Internet /dev/null internal inetd service
223
224config CONFIG_FEATURE_INETD_SUPPORT_BILTIN_TIME
225 bool " Support time service"
226 default y
227 depends on CONFIG_INETD
228 help
229 Return 32 bit time since 1900 internal inetd service
230
231config CONFIG_FEATURE_INETD_SUPPORT_BILTIN_DAYTIME
232 bool " Support daytime service"
233 default y
234 depends on CONFIG_INETD
235 help
236 Return human-readable time internal inetd service
237
238config CONFIG_FEATURE_INETD_SUPPORT_BILTIN_CHARGEN
239 bool " Support chargen service"
240 default y
241 depends on CONFIG_INETD
242 help
243 Familiar character generator internal inetd service
244
245
135config CONFIG_IP 246config CONFIG_IP
136 bool "ip" 247 bool "ip"
137 default n 248 default n
@@ -316,7 +427,7 @@ config CONFIG_TELNETD
316 Please submit a patch to add help text for this item. 427 Please submit a patch to add help text for this item.
317 428
318config CONFIG_FEATURE_TELNETD_INETD 429config CONFIG_FEATURE_TELNETD_INETD
319 bool " Use inetd" 430 bool " Support call from inetd only"
320 default n 431 default n
321 depends on CONFIG_TELNETD 432 depends on CONFIG_TELNETD
322 help 433 help