From 225cb94df76fea6537cd8cccb151d21ff4242310 Mon Sep 17 00:00:00 2001 From: stevesk Date: Wed, 21 Aug 2002 20:10:28 +0000 Subject: raise listen backlog; ok markus@ --- usr.bin/ssh/ssh-agent.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'usr.bin/ssh/ssh-agent.c') 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 -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 #include @@ -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); } -- cgit v1.2.3-59-g8ed1b