add ListenQueueSize keyword to O (Daemon Options) option
authorEric Allman <eric@ucbvax.Berkeley.EDU>
Fri, 7 May 1993 22:38:00 +0000 (14:38 -0800)
committerEric Allman <eric@ucbvax.Berkeley.EDU>
Fri, 7 May 1993 22:38:00 +0000 (14:38 -0800)
SCCS-vsn: usr.sbin/sendmail/src/daemon.c 6.45

usr/src/usr.sbin/sendmail/src/daemon.c

index 675882e..4547638 100644 (file)
@@ -13,9 +13,9 @@
 
 #ifndef lint
 #ifdef DAEMON
 
 #ifndef lint
 #ifdef DAEMON
-static char sccsid[] = "@(#)daemon.c   6.44 (Berkeley) %G% (with daemon mode)";
+static char sccsid[] = "@(#)daemon.c   6.45 (Berkeley) %G% (with daemon mode)";
 #else
 #else
-static char sccsid[] = "@(#)daemon.c   6.44 (Berkeley) %G% (without daemon mode)";
+static char sccsid[] = "@(#)daemon.c   6.45 (Berkeley) %G% (without daemon mode)";
 #endif
 #endif /* not lint */
 
 #endif
 #endif /* not lint */
 
@@ -83,6 +83,7 @@ static FILE   *MailPort;      /* port that mail comes in on */
 
 int            DaemonSocket    = -1;           /* fd describing socket */
 SOCKADDR       DaemonAddr;                     /* socket for incoming */
 
 int            DaemonSocket    = -1;           /* fd describing socket */
 SOCKADDR       DaemonAddr;                     /* socket for incoming */
+int            ListenQueueSize = 10;           /* size of listen queue */
 
 getrequests()
 {
 
 getrequests()
 {