Textalk / websocket-php

WebSocket client and server in PHP
Other
925 stars 255 forks source link

Connect to a unixsocket support #138

Open ozkankirik opened 3 years ago

ozkankirik commented 3 years ago

Is it possible to connect to unix sockets?

php stream_socket_client was called on line https://github.com/Textalk/websocket-php/blob/master/lib/Client.php#L114. According to php.net, stream_socket_client supports using unix sockets.

$sock = stream_socket_client('unix:///full/path/to/my/socket.sock', $errno, $errstr);

parse_url function should be improved to support unix sockets.