1
0
mirror of https://github.com/danog/ipc.git synced 2024-11-26 20:15:05 +01:00
This commit is contained in:
Daniil Gentili 2021-04-07 11:11:22 +02:00
parent 1eae1ea407
commit a44e077f2d
Signed by: danog
GPG Key ID: 8C1BE3B34B230CA7

View File

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