[BusyBox-cvs] busybox/include applets.h,1.90,1.91 usage.h,1.142,1.143

Glenn McGrath bug1 at busybox.net
Sun Feb 9 06:51:17 UTC 2003


Update of /var/cvs/busybox/include
In directory winder:/tmp/cvs-serv22929/include

Modified Files:
	applets.h usage.h 
Log Message:
New applet, inetd, make httpd features more configurable, update authors, last_patch_80 
from Vladimir N. Oleynik


Index: applets.h
===================================================================
RCS file: /var/cvs/busybox/include/applets.h,v
retrieving revision 1.90
retrieving revision 1.91
diff -u -d -r1.90 -r1.91
--- applets.h	23 Jan 2003 05:59:31 -0000	1.90
+++ applets.h	9 Feb 2003 06:51:13 -0000	1.91
@@ -265,6 +265,9 @@
 #ifdef CONFIG_IFUPDOWN
 	APPLET(ifup, ifupdown_main, _BB_DIR_SBIN, _BB_SUID_NEVER)
 #endif
+#ifdef CONFIG_INETD
+	APPLET(inetd, inetd_main, _BB_DIR_USR_SBIN, _BB_SUID_NEVER)
+#endif
 #ifdef CONFIG_INIT
 	APPLET(init, init_main, _BB_DIR_SBIN, _BB_SUID_NEVER)
 #endif

Index: usage.h
===================================================================
RCS file: /var/cvs/busybox/include/usage.h,v
retrieving revision 1.142
retrieving revision 1.143
diff -u -d -r1.142 -r1.143
--- usage.h	23 Jan 2003 05:59:31 -0000	1.142
+++ usage.h	9 Feb 2003 06:51:13 -0000	1.143
@@ -915,6 +915,14 @@
 	"\t-m\tdon't run any mappings\n" \
 	"\t-f\tforce de/configuration\n"
 	
+#define inetd_trivial_usage \
+	"[-q len] [conf]"
+#define inetd_full_usage \
+	"Usage: [-q len] [conf]\n\n" \
+	"Option:\n" \
+	"\t-q\tSets the size of the socket listen queue to\n" \
+	"the specified value. Default is 128."
+
 #define init_trivial_usage \
 	""
 #define init_full_usage \




More information about the busybox-cvs mailing list