diff options
author | Darren Tucker <dtucker@zip.com.au> | 2009-08-28 03:21:06 +0200 |
---|---|---|
committer | Darren Tucker <dtucker@zip.com.au> | 2009-08-28 03:21:06 +0200 |
commit | 86e30a0166f9c9e65983d2c4066873c4181d08c8 (patch) | |
tree | 3b2be01d381e61c1c7f544a560f7dbb8b430a5d7 /configure.ac | |
parent | - (dtucker) [channels.c configure.ac] Bug #1528: skip the tcgetattr call on (diff) | |
download | openssh-86e30a0166f9c9e65983d2c4066873c4181d08c8.tar.xz openssh-86e30a0166f9c9e65983d2c4066873c4181d08c8.zip |
- (dtucker) [clientloop.c configure.ac defines.h] Make the client's IO buffer
size a compile-time option and set it to 64k on Cygwin, since Corinna
reports that it makes a significant difference to performance. ok djm@
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 5f5a08a0a..ef0b0fc97 100644 --- a/configure.ac +++ b/configure.ac @@ -1,4 +1,4 @@ -# $Id: configure.ac,v 1.423 2009/08/28 01:02:37 dtucker Exp $ +# $Id: configure.ac,v 1.424 2009/08/28 01:21:07 dtucker 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.423 $) +AC_REVISION($Revision: 1.424 $) AC_CONFIG_SRCDIR([ssh.c]) AC_CONFIG_HEADER(config.h) @@ -446,6 +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]) ;; *-*-dgux*) AC_DEFINE(IP_TOS_IS_BROKEN, 1, |