diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2016-11-23 09:05:14 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2016-11-23 09:05:14 +0100 |
commit | 47367e1d50b81501e8a6ce215f8be4eeacdda693 (patch) | |
tree | 28be64a4a758a274ef2459628ec29384722cd3fb /networking/inetd.c | |
parent | e32b64c4ec9272295df6852fb2a2888d7799d2f0 (diff) | |
download | busybox-w32-47367e1d50b81501e8a6ce215f8be4eeacdda693.tar.gz busybox-w32-47367e1d50b81501e8a6ce215f8be4eeacdda693.tar.bz2 busybox-w32-47367e1d50b81501e8a6ce215f8be4eeacdda693.zip |
Convert all networking/* applets to "new style" applet definitions
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'networking/inetd.c')
-rw-r--r-- | networking/inetd.c | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/networking/inetd.c b/networking/inetd.c index f9295e38b..4d0ab2e0d 100644 --- a/networking/inetd.c +++ b/networking/inetd.c | |||
@@ -153,6 +153,59 @@ | |||
153 | * setgid(specified group) | 153 | * setgid(specified group) |
154 | * setuid() | 154 | * setuid() |
155 | */ | 155 | */ |
156 | //config:config INETD | ||
157 | //config: bool "inetd" | ||
158 | //config: default y | ||
159 | //config: select FEATURE_SYSLOG | ||
160 | //config: help | ||
161 | //config: Internet superserver daemon | ||
162 | //config: | ||
163 | //config:config FEATURE_INETD_SUPPORT_BUILTIN_ECHO | ||
164 | //config: bool "Support echo service" | ||
165 | //config: default y | ||
166 | //config: depends on INETD | ||
167 | //config: help | ||
168 | //config: Echo received data internal inetd service | ||
169 | //config: | ||
170 | //config:config FEATURE_INETD_SUPPORT_BUILTIN_DISCARD | ||
171 | //config: bool "Support discard service" | ||
172 | //config: default y | ||
173 | //config: depends on INETD | ||
174 | //config: help | ||
175 | //config: Internet /dev/null internal inetd service | ||
176 | //config: | ||
177 | //config:config FEATURE_INETD_SUPPORT_BUILTIN_TIME | ||
178 | //config: bool "Support time service" | ||
179 | //config: default y | ||
180 | //config: depends on INETD | ||
181 | //config: help | ||
182 | //config: Return 32 bit time since 1900 internal inetd service | ||
183 | //config: | ||
184 | //config:config FEATURE_INETD_SUPPORT_BUILTIN_DAYTIME | ||
185 | //config: bool "Support daytime service" | ||
186 | //config: default y | ||
187 | //config: depends on INETD | ||
188 | //config: help | ||
189 | //config: Return human-readable time internal inetd service | ||
190 | //config: | ||
191 | //config:config FEATURE_INETD_SUPPORT_BUILTIN_CHARGEN | ||
192 | //config: bool "Support chargen service" | ||
193 | //config: default y | ||
194 | //config: depends on INETD | ||
195 | //config: help | ||
196 | //config: Familiar character generator internal inetd service | ||
197 | //config: | ||
198 | //config:config FEATURE_INETD_RPC | ||
199 | //config: bool "Support RPC services" | ||
200 | //config: default n # very rarely used, and needs Sun RPC support in libc | ||
201 | //config: depends on INETD | ||
202 | //config: select FEATURE_HAVE_RPC | ||
203 | //config: help | ||
204 | //config: Support Sun-RPC based services | ||
205 | |||
206 | //applet:IF_INETD(APPLET(inetd, BB_DIR_USR_SBIN, BB_SUID_DROP)) | ||
207 | |||
208 | //kbuild:lib-$(CONFIG_INETD) += inetd.o | ||
156 | 209 | ||
157 | //usage:#define inetd_trivial_usage | 210 | //usage:#define inetd_trivial_usage |
158 | //usage: "[-fe] [-q N] [-R N] [CONFFILE]" | 211 | //usage: "[-fe] [-q N] [-R N] [CONFFILE]" |