mirror of
https://github.com/YGGverse/hl-php.git
synced 2025-01-30 16:24:22 +00:00
add socket connection closers
This commit is contained in:
parent
49c5c76908
commit
6479e40496
@ -65,6 +65,10 @@ class Master
|
||||
// Skip header
|
||||
if (!fread($this->_socket, 6))
|
||||
{
|
||||
fclose(
|
||||
$this->_socket
|
||||
);
|
||||
|
||||
return null;
|
||||
}
|
||||
|
||||
@ -76,6 +80,10 @@ class Master
|
||||
// Get host
|
||||
if (false === $host = fread($this->_socket, 16))
|
||||
{
|
||||
fclose(
|
||||
$this->_socket
|
||||
);
|
||||
|
||||
return null;
|
||||
}
|
||||
|
||||
@ -94,12 +102,20 @@ class Master
|
||||
// Decode first byte for port
|
||||
if (false === $byte1 = fread($this->_socket, 1))
|
||||
{
|
||||
fclose(
|
||||
$this->_socket
|
||||
);
|
||||
|
||||
return null;
|
||||
}
|
||||
|
||||
// Decode second byte for port
|
||||
if (false === $byte2 = fread($this->_socket, 1))
|
||||
{
|
||||
fclose(
|
||||
$this->_socket
|
||||
);
|
||||
|
||||
return null;
|
||||
}
|
||||
|
||||
@ -123,6 +139,11 @@ class Master
|
||||
];
|
||||
}
|
||||
|
||||
// Close connection
|
||||
fclose(
|
||||
$this->_socket
|
||||
);
|
||||
|
||||
return $servers;
|
||||
}
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user