Home
last modified time | relevance | path

Searched refs:packet (Results 1 – 5 of 5) sorted by relevance

/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/System/SSH/Agent/
H A DIdentity.php269 $packet = Strings::packSSH2(
276 $packet = Strings::packSSH2('s', $packet);
277 if (strlen($packet) != fputs($this->fsock, $packet)) {
282 $packet = $this->readBytes($length);
284 list($type, $signature_blob) = Strings::unpackSSH2('Cs', $packet);
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/System/SSH/
H A DAgent.php164 $packet = pack('NC', 1, self::SSH_AGENTC_REQUEST_IDENTITIES);
165 if (strlen($packet) != fputs($this->fsock, $packet)) {
170 $packet = $this->readBytes($length);
172 list($type, $keyCount) = Strings::unpackSSH2('CN', $packet);
179 list($key_blob, $comment) = Strings::unpackSSH2('ss', $packet);
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Net/
H A DSFTP.php122 * The request ID exists in the off chance that a packet is sent out-of-order. Of course, this library doesn't support
133 * The request ID exists in the off chance that a packet is sent out-of-order. Of course, this library doesn't support
322 * in cases where the server chooses the packet length (such as
333 * Was the last packet due to the channels being closed or not?
555 $packet = Strings::packSSH2(
563 $this->send_binary_packet($packet);
575 $packet = Strings::packSSH2(
583 $this->send_binary_packet($packet);
601 . 'Got packet type: ' . $this->packet_type);
645 So what do you do if you have a client whose initial SSH_FXP_INIT packet say
[all...]
H A DSSH2.php172 * Returns whenever a data packet is received.
630 * If a client requests a packet from one channel but receives two packets from another those packets should
660 * Maximum packet size indexed by channel
985 * Send the key exchange initiation packet first?
1108 * "During initial KEX, terminate the connection if any unexpected or out-of-sequence packet is received"
1275 * sending the [SSH_MSG_KEXINIT] packet". It does not say which side sends it first. In theory
1288 * sending the [SSH_MSG_KEXINIT] packet". It does not say which side sends it first. In theory
1757 $packet = pack(
1762 $this->send_binary_packet($packet);
1887 $packet
[all...]
H A DSSH1.php