summaryrefslogtreecommitdiff
path: root/usr.bin/ssh
diff options
context:
space:
mode:
authorDamien Miller <djm@cvs.openbsd.org>2008-07-13 22:16:04 +0000
committerDamien Miller <djm@cvs.openbsd.org>2008-07-13 22:16:04 +0000
commitcfea7d2225512ae6fba8da8059de847c1e837351 (patch)
treef1d9037e4c79f62032e0deb309f6d789a7172f94 /usr.bin/ssh
parent06c265a4e02f869ad2ea3ca7945536168f9adc56 (diff)
increase number of piplelined requests so they properly fill the
(recently increased) channel window. prompted by rapier AT psc.edu; ok markus@
Diffstat (limited to 'usr.bin/ssh')
-rw-r--r--usr.bin/ssh/sftp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/sftp.c b/usr.bin/ssh/sftp.c
index 332903be685..a0b9bc399f1 100644
--- a/usr.bin/ssh/sftp.c
+++ b/usr.bin/ssh/sftp.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: sftp.c,v 1.102 2008/06/21 07:46:46 martynas Exp $ */
+/* $OpenBSD: sftp.c,v 1.103 2008/07/13 22:16:03 djm Exp $ */
/*
* Copyright (c) 2001-2004 Damien Miller <djm@openbsd.org>
*
@@ -56,7 +56,7 @@ int batchmode = 0;
size_t copy_buffer_len = 32768;
/* Number of concurrent outstanding requests */
-size_t num_requests = 16;
+size_t num_requests = 64;
/* PID of ssh transport process */
static pid_t sshpid = -1;