Merge branch '2.0-callback' into master-callback

This commit is contained in:
terrafrost 2019-06-02 08:22:26 -05:00
commit 30320f5a91

View File

@ -2082,11 +2082,12 @@ class SFTP extends SSH2
* @param string|bool|resource $local_file * @param string|bool|resource $local_file
* @param int $offset * @param int $offset
* @param int $length * @param int $length
* @param callable|null $progressCallback
* @throws \UnexpectedValueException on receipt of unexpected packets * @throws \UnexpectedValueException on receipt of unexpected packets
* @return mixed * @return mixed
* @access public * @access public
*/ */
public function get($remote_file, $local_file = false, $offset = 0, $length = -1) public function get($remote_file, $local_file = false, $offset = 0, $length = -1, $progressCallback = null)
{ {
if (!($this->bitmap & SSH2::MASK_LOGIN)) { if (!($this->bitmap & SSH2::MASK_LOGIN)) {
return false; return false;
@ -2152,6 +2153,9 @@ class SFTP extends SSH2
} }
$packet = null; $packet = null;
$read+= $packet_size; $read+= $packet_size;
if (is_callable($progressCallback)) {
call_user_func($progressCallback, $read);
}
$i++; $i++;
} }