Fix Communication Manager

This commit is contained in:
Beu
2022-03-03 20:04:02 +01:00
parent a4594122dc
commit b88bddb76b
2 changed files with 9 additions and 2 deletions

View File

@ -50,6 +50,13 @@ class Server extends EventEmitter implements ServerInterface
$this->emit('connection', array($client));
}
public function getHost()
{
$name = stream_socket_get_name($this->master, false);
return (int) substr(strrchr($name, ':'), 0);
}
public function getPort()
{
$name = stream_socket_get_name($this->master, false);