summaryrefslogtreecommitdiff
path: root/sftp.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2008-07-14 11:29:24 +1000
committerDamien Miller <djm@mindrot.org>2008-07-14 11:29:24 +1000
commit7f980d1ac760ac7bdec1de467c6ee7071057370a (patch)
treecf61aa77f3ef11e2dc435b0f62c742e4e67e831b /sftp.c
parent163886ff7170f031b59b36d0a76165757d680070 (diff)
- djm@cvs.openbsd.org 2008/07/13 22:16:03
[sftp.c] 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 'sftp.c')
-rw-r--r--sftp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sftp.c b/sftp.c
index f361378ee..e1aa49d0f 100644
--- a/sftp.c
+++ b/sftp.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: sftp.c,v 1.102 2008/06/21 07:46:46 martynas Exp $ */ 1/* $OpenBSD: sftp.c,v 1.103 2008/07/13 22:16:03 djm Exp $ */
2/* 2/*
3 * Copyright (c) 2001-2004 Damien Miller <djm@openbsd.org> 3 * Copyright (c) 2001-2004 Damien Miller <djm@openbsd.org>
4 * 4 *
@@ -75,7 +75,7 @@ int batchmode = 0;
75size_t copy_buffer_len = 32768; 75size_t copy_buffer_len = 32768;
76 76
77/* Number of concurrent outstanding requests */ 77/* Number of concurrent outstanding requests */
78size_t num_requests = 16; 78size_t num_requests = 64;
79 79
80/* PID of ssh transport process */ 80/* PID of ssh transport process */
81static pid_t sshpid = -1; 81static pid_t sshpid = -1;