├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── composer.json └── src ├── Application.php ├── Close.php ├── Connection.php ├── Driver ├── Driver.php └── WebSocketDriver.php ├── Exception ├── ConnectionException.php ├── DataException.php ├── Error.php ├── Exception.php ├── FrameException.php ├── PolicyException.php ├── ProtocolException.php └── Throwable.php ├── Message.php ├── Protocol ├── DefaultProtocolMatcher.php ├── Message │ └── WebSocketResponse.php ├── Protocol.php ├── ProtocolMatcher.php ├── Rfc6455Connection.php ├── Rfc6455Frame.php ├── Rfc6455Protocol.php └── Rfc6455Transporter.php ├── Server ├── Internal │ └── WebSocketRequestHandler.php └── Server.php └── SubProtocol.php /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icicleio/websocket/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icicleio/websocket/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icicleio/websocket/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icicleio/websocket/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icicleio/websocket/HEAD/composer.json -------------------------------------------------------------------------------- /src/Application.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icicleio/websocket/HEAD/src/Application.php -------------------------------------------------------------------------------- /src/Close.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icicleio/websocket/HEAD/src/Close.php -------------------------------------------------------------------------------- /src/Connection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icicleio/websocket/HEAD/src/Connection.php -------------------------------------------------------------------------------- /src/Driver/Driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icicleio/websocket/HEAD/src/Driver/Driver.php -------------------------------------------------------------------------------- /src/Driver/WebSocketDriver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icicleio/websocket/HEAD/src/Driver/WebSocketDriver.php -------------------------------------------------------------------------------- /src/Exception/ConnectionException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icicleio/websocket/HEAD/src/Exception/ConnectionException.php -------------------------------------------------------------------------------- /src/Exception/DataException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icicleio/websocket/HEAD/src/Exception/DataException.php -------------------------------------------------------------------------------- /src/Exception/Error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icicleio/websocket/HEAD/src/Exception/Error.php -------------------------------------------------------------------------------- /src/Exception/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icicleio/websocket/HEAD/src/Exception/Exception.php -------------------------------------------------------------------------------- /src/Exception/FrameException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icicleio/websocket/HEAD/src/Exception/FrameException.php -------------------------------------------------------------------------------- /src/Exception/PolicyException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icicleio/websocket/HEAD/src/Exception/PolicyException.php -------------------------------------------------------------------------------- /src/Exception/ProtocolException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icicleio/websocket/HEAD/src/Exception/ProtocolException.php -------------------------------------------------------------------------------- /src/Exception/Throwable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icicleio/websocket/HEAD/src/Exception/Throwable.php -------------------------------------------------------------------------------- /src/Message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icicleio/websocket/HEAD/src/Message.php -------------------------------------------------------------------------------- /src/Protocol/DefaultProtocolMatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icicleio/websocket/HEAD/src/Protocol/DefaultProtocolMatcher.php -------------------------------------------------------------------------------- /src/Protocol/Message/WebSocketResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icicleio/websocket/HEAD/src/Protocol/Message/WebSocketResponse.php -------------------------------------------------------------------------------- /src/Protocol/Protocol.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icicleio/websocket/HEAD/src/Protocol/Protocol.php -------------------------------------------------------------------------------- /src/Protocol/ProtocolMatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icicleio/websocket/HEAD/src/Protocol/ProtocolMatcher.php -------------------------------------------------------------------------------- /src/Protocol/Rfc6455Connection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icicleio/websocket/HEAD/src/Protocol/Rfc6455Connection.php -------------------------------------------------------------------------------- /src/Protocol/Rfc6455Frame.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icicleio/websocket/HEAD/src/Protocol/Rfc6455Frame.php -------------------------------------------------------------------------------- /src/Protocol/Rfc6455Protocol.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icicleio/websocket/HEAD/src/Protocol/Rfc6455Protocol.php -------------------------------------------------------------------------------- /src/Protocol/Rfc6455Transporter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icicleio/websocket/HEAD/src/Protocol/Rfc6455Transporter.php -------------------------------------------------------------------------------- /src/Server/Internal/WebSocketRequestHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icicleio/websocket/HEAD/src/Server/Internal/WebSocketRequestHandler.php -------------------------------------------------------------------------------- /src/Server/Server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icicleio/websocket/HEAD/src/Server/Server.php -------------------------------------------------------------------------------- /src/SubProtocol.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icicleio/websocket/HEAD/src/SubProtocol.php --------------------------------------------------------------------------------