mirror of
https://github.com/phpseclib/phpseclib.git
synced 2024-11-13 08:56:30 +00:00
Merge branch '1.0' into 2.0
This commit is contained in:
commit
b0fe99b792
@ -467,6 +467,8 @@ class SFTP extends SSH2
|
|||||||
$response = $this->_get_channel_packet(self::CHANNEL, true);
|
$response = $this->_get_channel_packet(self::CHANNEL, true);
|
||||||
if ($response === false) {
|
if ($response === false) {
|
||||||
return false;
|
return false;
|
||||||
|
} else if ($response === true && $this->isTimeout()) {
|
||||||
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
$packet = pack(
|
$packet = pack(
|
||||||
@ -513,6 +515,8 @@ class SFTP extends SSH2
|
|||||||
if ($response === false) {
|
if ($response === false) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
} else if ($response === true && $this->isTimeout()) {
|
||||||
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
$this->channel_status[self::CHANNEL] = NET_SSH2_MSG_CHANNEL_DATA;
|
$this->channel_status[self::CHANNEL] = NET_SSH2_MSG_CHANNEL_DATA;
|
||||||
|
Loading…
Reference in New Issue
Block a user