diff options
| author | David Greenman <dg@FreeBSD.org> | 1996-07-17 15:00:28 +0000 |
|---|---|---|
| committer | David Greenman <dg@FreeBSD.org> | 1996-07-17 15:00:28 +0000 |
| commit | e289453542a1ef2266e93a4b276ac89175d0875e (patch) | |
| tree | 5a058cc6412910f02f8d65c5dcfe491da157a991 | |
| parent | 0ba27adc2003d3f8e263895e52516a88c1c15a08 (diff) | |
Notes
| -rw-r--r-- | usr.sbin/inetd/inetd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/inetd/inetd.c b/usr.sbin/inetd/inetd.c index d978c26c717c..84b45b9485e4 100644 --- a/usr.sbin/inetd/inetd.c +++ b/usr.sbin/inetd/inetd.c @@ -40,7 +40,7 @@ static char copyright[] = #ifndef lint /* from: @(#)inetd.c 8.4 (Berkeley) 4/13/94"; */ static char inetd_c_rcsid[] = - "$Id: inetd.c,v 1.10 1996/01/01 08:42:23 peter Exp $"; + "$Id: inetd.c,v 1.11 1996/02/07 17:15:01 wollman Exp $"; #endif /* not lint */ /* @@ -781,7 +781,7 @@ setsockopt(fd, SOL_SOCKET, opt, (char *)&on, sizeof (on)) } if (sep->se_socktype == SOCK_STREAM) - listen(sep->se_fd, 10); + listen(sep->se_fd, 64); FD_SET(sep->se_fd, &allsock); nsock++; if (sep->se_fd > maxsock) |
