diff options
author | Kevin Steves <stevesk@cvs.openbsd.org> | 2002-08-21 20:10:29 +0000 |
---|---|---|
committer | Kevin Steves <stevesk@cvs.openbsd.org> | 2002-08-21 20:10:29 +0000 |
commit | 5e7ab34758e8f9770a097f605bd2e240ddd648e2 (patch) | |
tree | 51dee9a7cd4486a4fb697838565163cf7dfb7598 /usr.bin/ssh | |
parent | 4dc9d07a890481f3471a515bad0b4b4e45e7b134 (diff) |
raise listen backlog; ok markus@
Diffstat (limited to 'usr.bin/ssh')
-rw-r--r-- | usr.bin/ssh/ssh-agent.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/ssh-agent.c b/usr.bin/ssh/ssh-agent.c index 48d7ce2e413..14298fdb24f 100644 --- a/usr.bin/ssh/ssh-agent.c +++ b/usr.bin/ssh/ssh-agent.c @@ -35,7 +35,7 @@ #include "includes.h" #include <sys/queue.h> -RCSID("$OpenBSD: ssh-agent.c,v 1.99 2002/08/12 10:46:35 markus Exp $"); +RCSID("$OpenBSD: ssh-agent.c,v 1.100 2002/08/21 20:10:28 stevesk Exp $"); #include <openssl/evp.h> #include <openssl/md5.h> @@ -1034,7 +1034,7 @@ main(int ac, char **av) perror("bind"); cleanup_exit(1); } - if (listen(sock, 5) < 0) { + if (listen(sock, 128) < 0) { perror("listen"); cleanup_exit(1); } |