Lines Matching refs:packet

549         $packet = Strings::packSSH2(
558 $this->send_binary_packet($packet);
567 $packet = Strings::packSSH2(
575 $this->send_binary_packet($packet);
587 $packet = Strings::packSSH2(
595 $this->send_binary_packet($packet);
678 $packet = Strings::packSSH2('ss', 'version-select', "$ver");
679 $this->send_sftp_packet(NET_SFTP_EXTENDED, $packet);
1494 $packet = Strings::packSSH2('s', $filename);
1495 $this->send_sftp_packet($type, $packet);
1559 $packet = Strings::packSSH2('s', $filename);
1560 $packet .= $this->version >= 5 ?
1563 $packet .= $attr;
1565 $this->send_sftp_packet(NET_SFTP_OPEN, $packet);
1688 $packet = pack('Na*', strlen($filename), $filename);
1689 $this->send_sftp_packet(NET_SFTP_STAT, $packet);
1735 $packet = Strings::packSSH2('s', $filename);
1736 $packet .= $this->version >= 4 ?
1739 $this->send_sftp_packet(NET_SFTP_SETSTAT, $packet);
1804 $packet = Strings::packSSH2('s', $temp);
1805 $packet .= $this->version >= 4 ?
1808 $this->send_sftp_packet(NET_SFTP_SETSTAT, $packet);
1821 $packet = Strings::packSSH2('s', $path);
1822 $packet .= $this->version >= 4 ?
1825 $this->send_sftp_packet(NET_SFTP_SETSTAT, $packet);
1909 $packet = Strings::packSSH2('ssC', $link, $target, 1);
1926 $packet = substr($this->server_identifier, 0, 15) == 'SSH-2.0-OpenSSH' ?
1930 $this->send_sftp_packet($type, $packet);
2145 $packet = Strings::packSSH2('s', $remote_file);
2146 $packet .= $this->version >= 5 ?
2149 $this->send_sftp_packet(NET_SFTP_OPEN, $packet);
2230 …$packet = pack('Na*N3a*', strlen($handle), $handle, $subtemp / 4294967296, $subtemp, strlen($temp)…
2232 $this->send_sftp_packet(NET_SFTP_WRITE, $packet, $j);
2372 $packet = Strings::packSSH2('s', $remote_file);
2373 $packet .= $this->version >= 5 ?
2376 $this->send_sftp_packet(NET_SFTP_OPEN, $packet);
2419 … $packet = Strings::packSSH2('sN3', $handle, $tempoffset / 4294967296, $tempoffset, $packet_size);
2421 $this->send_sftp_packet(NET_SFTP_READ, $packet, $i);
2428 $packet = null;
2727 $packet = Strings::packSSH2('sNN', $this->realpath($path), NET_SFTP_OPEN_READ, 0);
2728 $this->send_sftp_packet(NET_SFTP_OPEN, $packet);
2755 $packet = Strings::packSSH2('sNN', $this->realpath($path), NET_SFTP_OPEN_WRITE, 0);
2756 $this->send_sftp_packet(NET_SFTP_OPEN, $packet);
2978 $packet = Strings::packSSH2('ss', $oldname, $newname);
2989 $packet .= "\0\0\0\0";
2991 $this->send_sftp_packet(NET_SFTP_RENAME, $packet);
3278 $packet = $this->use_request_id ?
3283 $this->send_channel_packet(self::CHANNEL, $packet);
3404 $packet = Strings::shift($this->packet_buffer, $length);
3418 echo $start . $this->format_log([$packet], [$packet_type]) . $stop;
3424 $this->packet_log[] = $packet;
3432 'packet' => $packet
3437 return $packet;