├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── api.c ├── api.h ├── lib ├── base64 │ ├── b64.h │ ├── decode.c │ └── encode.c ├── cjson │ ├── cJSON.c │ └── cJSON.h └── sha1 │ ├── sha1.c │ └── sha1.h ├── main.c ├── server.c ├── server.h ├── ws.c └── ws.h /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | test 3 | *.o 4 | websocket.protocol.ql.dll 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatl/qqlight-websocket/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatl/qqlight-websocket/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatl/qqlight-websocket/HEAD/README.md -------------------------------------------------------------------------------- /api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatl/qqlight-websocket/HEAD/api.c -------------------------------------------------------------------------------- /api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatl/qqlight-websocket/HEAD/api.h -------------------------------------------------------------------------------- /lib/base64/b64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatl/qqlight-websocket/HEAD/lib/base64/b64.h -------------------------------------------------------------------------------- /lib/base64/decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatl/qqlight-websocket/HEAD/lib/base64/decode.c -------------------------------------------------------------------------------- /lib/base64/encode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatl/qqlight-websocket/HEAD/lib/base64/encode.c -------------------------------------------------------------------------------- /lib/cjson/cJSON.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatl/qqlight-websocket/HEAD/lib/cjson/cJSON.c -------------------------------------------------------------------------------- /lib/cjson/cJSON.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatl/qqlight-websocket/HEAD/lib/cjson/cJSON.h -------------------------------------------------------------------------------- /lib/sha1/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatl/qqlight-websocket/HEAD/lib/sha1/sha1.c -------------------------------------------------------------------------------- /lib/sha1/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatl/qqlight-websocket/HEAD/lib/sha1/sha1.h -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatl/qqlight-websocket/HEAD/main.c -------------------------------------------------------------------------------- /server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatl/qqlight-websocket/HEAD/server.c -------------------------------------------------------------------------------- /server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatl/qqlight-websocket/HEAD/server.h -------------------------------------------------------------------------------- /ws.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatl/qqlight-websocket/HEAD/ws.c -------------------------------------------------------------------------------- /ws.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatl/qqlight-websocket/HEAD/ws.h --------------------------------------------------------------------------------