1
0
mirror of https://github.com/danog/ipc.git synced 2024-11-30 04:29:09 +01:00
This commit is contained in:
Daniil Gentili 2021-04-20 16:44:10 +02:00
parent 62eeba222c
commit 9450af5ca3
Signed by: danog
GPG Key ID: 8C1BE3B34B230CA7

View File

@ -52,7 +52,8 @@ class IpcServer
if (!$useFIFO) { if (!$useFIFO) {
try { try {
$this->server = \stream_socket_server($listenUri, $errno, $errstr, \STREAM_SERVER_BIND | \STREAM_SERVER_LISTEN); $this->server = \stream_socket_server($listenUri, $errno, $errstr, \STREAM_SERVER_BIND | \STREAM_SERVER_LISTEN);
} catch (\Throwable $e) {} } catch (\Throwable $e) {
}
} }
$fifo = false; $fifo = false;