mirror of
https://github.com/phpseclib/phpseclib.git
synced 2024-11-11 08:10:58 +00:00
timeout in _get_channel_packet during _init_sftp_connection should be a failure
This commit is contained in:
parent
a02526e5e0
commit
dab514faff
@ -526,6 +526,8 @@ class Net_SFTP extends Net_SSH2
|
||||
$response = $this->_get_channel_packet(NET_SFTP_CHANNEL, true);
|
||||
if ($response === false) {
|
||||
return false;
|
||||
} else if ($response === true && $this->isTimeout()) {
|
||||
return false;
|
||||
}
|
||||
|
||||
$packet = pack(
|
||||
@ -572,6 +574,8 @@ class Net_SFTP extends Net_SSH2
|
||||
if ($response === false) {
|
||||
return false;
|
||||
}
|
||||
} else if ($response === true && $this->isTimeout()) {
|
||||
return false;
|
||||
}
|
||||
|
||||
$this->channel_status[NET_SFTP_CHANNEL] = NET_SSH2_MSG_CHANNEL_DATA;
|
||||
|
Loading…
Reference in New Issue
Block a user