inetd: make it NOMMU-capable and IPv6-friendly. Lots of renames

of variable/function names

Total: -2474 bytes
   text    data     bss     dec     hex filename
 802215     661    7452  810328   c5d58 busybox_old
 800120     661    7428  808209   c5511 busybox_unstripped
This commit is contained in:
Denis Vlasenko
2008-03-12 22:14:34 +00:00
parent 4e6c8120a5
commit 4e6d5117b8
10 changed files with 839 additions and 1061 deletions

View File

@ -1597,7 +1597,7 @@ USE_FEATURE_BRCTL_FANCY("\n" \
" -a De/configure all interfaces automatically\n" \
" -i FILE Use FILE for interface definitions\n" \
" -n Print out what would happen, but don't do it\n" \
" (note that this option doesn't disable mappings)\n" \
" (note: doesn't disable mappings)\n" \
" -v Print out what would happen before doing it\n" \
" -m Don't run any mappings\n" \
" -f Force de/configuration"
@ -1609,19 +1609,21 @@ USE_FEATURE_BRCTL_FANCY("\n" \
" -a De/configure all interfaces automatically\n" \
" -i FILE Use FILE for interface definitions\n" \
" -n Print out what would happen, but don't do it\n" \
" (note that this option doesn't disable mappings)\n" \
" (note: doesn't disable mappings)\n" \
" -v Print out what would happen before doing it\n" \
" -m Don't run any mappings\n" \
" -f Force de/configuration"
#define inetd_trivial_usage \
"[-f] [-q len] [conf]"
"[-fe] [-q N] [-R N] [CONFFILE]"
#define inetd_full_usage \
"Listen for network connections and launch programs" \
"\n\nOptions:\n" \
" -f Run in foreground\n" \
" -q N Set the size of the socket listen queue to N\n" \
" (default: 128)"
"Listen for network connections and launch programs\n" \
"\nOptions:" \
"\n -f Run in foreground" \
"\n -e Log to stderr" \
"\n -q N Socket listen queue (default: 128)" \
"\n -R N Pause services after N connects/min" \
"\n (default: 0 - disabled)"
#define init_trivial_usage \
""