diff options
author | Markus Friedl <markus@cvs.openbsd.org> | 2003-12-02 17:01:16 +0000 |
---|---|---|
committer | Markus Friedl <markus@cvs.openbsd.org> | 2003-12-02 17:01:16 +0000 |
commit | 12aaa54ab17af9f02d60bc1ccc6fa11cf39ec8d1 (patch) | |
tree | ab027de50b7936c600a0f905de123a0ecba3bd85 /usr.bin/ssh/ssh.h | |
parent | 586806ead1d607752cf8c10d161adb59e9f20b6e (diff) |
use SSH_LISTEN_BACKLOG (=128) in listen(2).
Diffstat (limited to 'usr.bin/ssh/ssh.h')
-rw-r--r-- | usr.bin/ssh/ssh.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/usr.bin/ssh/ssh.h b/usr.bin/ssh/ssh.h index 726a5002a9c..f2f1d90c5d7 100644 --- a/usr.bin/ssh/ssh.h +++ b/usr.bin/ssh/ssh.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ssh.h,v 1.74 2003/09/01 13:52:18 markus Exp $ */ +/* $OpenBSD: ssh.h,v 1.75 2003/12/02 17:01:15 markus Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> @@ -92,4 +92,7 @@ /* Minimum modulus size (n) for RSA keys. */ #define SSH_RSA_MINIMUM_MODULUS_SIZE 768 +/* Listen backlog for sshd, ssh-agent and forwarding sockets */ +#define SSH_LISTEN_BACKLOG 128 + #endif /* SSH_H */ |