Merge branch '1.0' into 2.0

This commit is contained in:
terrafrost 2023-07-05 07:30:33 -05:00
commit d8eec980b7
1 changed files with 1 additions and 1 deletions

View File

@ -3428,7 +3428,7 @@ class SSH2
*/
function isConnected()
{
return (bool) ($this->bitmap & self::MASK_CONNECTED);
return ($this->bitmap & self::MASK_CONNECTED) && is_resource($this->fsock) && !feof($this->fsock);
}
/**