├── .gitignore ├── AUTHORS ├── LICENSE ├── Makefile ├── README.md ├── websocket_parser.c └── websocket_parser.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-ion/websocket-parser/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- 1 | Ivan Shalganov -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-ion/websocket-parser/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-ion/websocket-parser/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-ion/websocket-parser/HEAD/README.md -------------------------------------------------------------------------------- /websocket_parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-ion/websocket-parser/HEAD/websocket_parser.c -------------------------------------------------------------------------------- /websocket_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-ion/websocket-parser/HEAD/websocket_parser.h --------------------------------------------------------------------------------