diff options
author | Tim Rice <tim@multitalents.net> | 2010-01-22 19:25:15 +0100 |
---|---|---|
committer | Tim Rice <tim@multitalents.net> | 2010-01-22 19:25:15 +0100 |
commit | 6761c7417d362fb8c0d71ddc60c3914f97e88c28 (patch) | |
tree | a371af342d208cb07644bbffc3c9dd003fe351d1 /configure.ac | |
parent | Reword comment in last commit for additional clearity. (diff) | |
download | openssh-6761c7417d362fb8c0d71ddc60c3914f97e88c28.tar.xz openssh-6761c7417d362fb8c0d71ddc60c3914f97e88c28.zip |
- (tim) [configure.ac] Due to constraints in Windows Sockets in terms of
socket inheritance, reduce the default SO_RCVBUF/SO_SNDBUF buffer size
in Cygwin to 65535. Patch from Corinna Vinschen.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac index aa74fc30f..e5de6f58b 100644 --- a/configure.ac +++ b/configure.ac @@ -1,4 +1,4 @@ -# $Id: configure.ac,v 1.438 2010/01/18 01:05:39 tim Exp $ +# $Id: configure.ac,v 1.439 2010/01/22 18:25:15 tim Exp $ # # Copyright (c) 1999-2004 Damien Miller # @@ -15,7 +15,7 @@ # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. AC_INIT(OpenSSH, Portable, openssh-unix-dev@mindrot.org) -AC_REVISION($Revision: 1.438 $) +AC_REVISION($Revision: 1.439 $) AC_CONFIG_SRCDIR([ssh.c]) AC_CONFIG_HEADER(config.h) @@ -446,7 +446,7 @@ int main(void) { exit(0); } AC_DEFINE(DISABLE_FD_PASSING, 1, [Define if your platform needs to skip post auth file descriptor passing]) - AC_DEFINE(SSH_IOBUFSZ, 65536, [Windows is sensitive to read buffer size]) + AC_DEFINE(SSH_IOBUFSZ, 65535, [Windows is sensitive to read buffer size]) ;; *-*-dgux*) AC_DEFINE(IP_TOS_IS_BROKEN, 1, |