1
0
mirror of https://github.com/danog/tgseclib.git synced 2024-11-27 04:34:45 +01:00

SSH2: Add isConnected() function

This commit is contained in:
terrafrost 2013-02-16 14:58:12 -06:00
parent 25c7e7bd96
commit 0333805f5c

View File

@ -2076,6 +2076,16 @@ class Net_SSH2 {
$this->disconnect();
}
/**
* Is the connection still active?
*
* @access public
*/
function isConnected()
{
return $this->bitmap & NET_SSH2_MASK_LOGIN;
}
/**
* Gets Binary Packets
*