mirror of
https://github.com/phpseclib/phpseclib.git
synced 2024-11-06 05:27:52 +00:00
SFTP: change max sftp packet size
1 << 20 isn't as reliable as 1 << 15 and doesn't seem to result in significant speedup either
This commit is contained in:
parent
eb61afd22f
commit
71743ce243
@ -268,14 +268,7 @@ class Net_SFTP extends Net_SSH2 {
|
|||||||
{
|
{
|
||||||
parent::Net_SSH2($host, $port, $timeout);
|
parent::Net_SSH2($host, $port, $timeout);
|
||||||
|
|
||||||
switch ($this->server_identifier) {
|
|
||||||
case 'SSH-2.0-ROSSSH':
|
|
||||||
// PuTTY uses this as the size
|
|
||||||
$this->max_sftp_packet = 1 << 15;
|
$this->max_sftp_packet = 1 << 15;
|
||||||
break;
|
|
||||||
default:
|
|
||||||
$this->max_sftp_packet = 1 << 20;
|
|
||||||
}
|
|
||||||
|
|
||||||
$this->packet_types = array(
|
$this->packet_types = array(
|
||||||
1 => 'NET_SFTP_INIT',
|
1 => 'NET_SFTP_INIT',
|
||||||
|
Loading…
Reference in New Issue
Block a user