Closing tcp connection #34

This commit is contained in:
ShevAbam 2016-04-16 19:18:01 +02:00
parent f50db37e12
commit 4952f02a7a
1 changed files with 3 additions and 4 deletions

View File

@ -171,15 +171,14 @@ class Misc
{
$handle = @fsockopen($host, $port, $errno, $errstr, $timeout);
if ($handle)
if (!$handle)
{
fclose($handle);
return true;
return false;
}
else
{
fclose($handle);
return false;
return true;
}
}
elseif ($protocol == 'udp')