mirror of
https://github.com/phpseclib/phpseclib.git
synced 2025-01-28 09:38:33 +00:00
Merge branch '2.0'
This commit is contained in:
commit
e91da39098
@ -3332,7 +3332,7 @@ class SSH2
|
|||||||
$this->bitmap = 0;
|
$this->bitmap = 0;
|
||||||
return false;
|
return false;
|
||||||
case NET_SSH2_MSG_IGNORE:
|
case NET_SSH2_MSG_IGNORE:
|
||||||
$payload = $this->get_binary_packet();
|
$payload = $this->get_binary_packet($skip_channel_filter);
|
||||||
break;
|
break;
|
||||||
case NET_SSH2_MSG_DEBUG:
|
case NET_SSH2_MSG_DEBUG:
|
||||||
Strings::shift($payload, 2);
|
Strings::shift($payload, 2);
|
||||||
@ -3341,7 +3341,7 @@ class SSH2
|
|||||||
}
|
}
|
||||||
extract(unpack('Nlength', Strings::shift($payload, 4)));
|
extract(unpack('Nlength', Strings::shift($payload, 4)));
|
||||||
$this->errors[] = 'SSH_MSG_DEBUG: ' . utf8_decode(Strings::shift($payload, $length));
|
$this->errors[] = 'SSH_MSG_DEBUG: ' . utf8_decode(Strings::shift($payload, $length));
|
||||||
$payload = $this->get_binary_packet();
|
$payload = $this->get_binary_packet($skip_channel_filter);
|
||||||
break;
|
break;
|
||||||
case NET_SSH2_MSG_UNIMPLEMENTED:
|
case NET_SSH2_MSG_UNIMPLEMENTED:
|
||||||
return false;
|
return false;
|
||||||
@ -3351,7 +3351,7 @@ class SSH2
|
|||||||
$this->bitmap = 0;
|
$this->bitmap = 0;
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
$payload = $this->get_binary_packet();
|
$payload = $this->get_binary_packet($skip_channel_filter);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user