mirror of
https://github.com/danog/phpseclib.git
synced 2024-12-04 10:38:12 +01:00
Merge pull request #588 from terrafrost/disconnect-fix
SSH2: update conditions under which _disconnect's code is executed * terrafrost/disconnect-fix: SSH2: update conditions under which _disconnect's code is executed
This commit is contained in:
commit
ec21aa23f1
@ -3277,7 +3277,7 @@ class SSH2
|
|||||||
*/
|
*/
|
||||||
function _disconnect($reason)
|
function _disconnect($reason)
|
||||||
{
|
{
|
||||||
if ($this->bitmap) {
|
if ($this->bitmap & NET_SSH2_MASK_CONNECTED) {
|
||||||
$data = pack('CNNa*Na*', NET_SSH2_MSG_DISCONNECT, $reason, 0, '', 0, '');
|
$data = pack('CNNa*Na*', NET_SSH2_MSG_DISCONNECT, $reason, 0, '', 0, '');
|
||||||
$this->_send_binary_packet($data);
|
$this->_send_binary_packet($data);
|
||||||
$this->bitmap = 0;
|
$this->bitmap = 0;
|
||||||
|
Loading…
Reference in New Issue
Block a user