- 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@
This commit is contained in:
Damien Miller 2008-07-14 11:29:24 +10:00
parent 163886ff71
commit 7f980d1ac7
2 changed files with 8 additions and 3 deletions

View File

@ -10,6 +10,11 @@
[channels.c]
use struct sockaddr_storage instead of struct sockaddr for accept(2)
address argument. from visibilis AT yahoo.com in bz#1485; ok markus@
- 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@
20080712
- (djm) OpenBSD CVS Sync
@ -4646,4 +4651,4 @@
OpenServer 6 and add osr5bigcrypt support so when someone migrates
passwords between UnixWare and OpenServer they will still work. OK dtucker@
$Id: ChangeLog,v 1.5077 2008/07/14 01:28:58 djm Exp $
$Id: ChangeLog,v 1.5078 2008/07/14 01:29:24 djm Exp $

4
sftp.c
View File

@ -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>
*
@ -75,7 +75,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;