Lukas Naumann

Results 1 comments of Lukas Naumann

You can use \React\Socket\FixedUriConnector to use UDS in pawl: ```` $loop = \React\EventLoop\Loop::get(); $connector = new \Ratchet\Client\Connector( $loop, new \React\Socket\FixedUriConnector('unix:///tmp/my-ws.sock', new \React\Socket\UnixConnector($loop)) ); $connector('ws://127.0.0.1/my-path') ->then(function (\Ratchet\Client\WebSocket $conn) { // connection...