├── .gitignore ├── README.md ├── doc ├── Overview.md ├── WebSocketHandler.md ├── WebSocketServer.md ├── tstream.md └── tstream_server.md ├── src ├── base64.cpp ├── base64.hpp ├── sha1.cpp ├── sha1.hpp ├── tstream.hpp ├── websocket.cpp ├── websocket.hpp └── xmake.lua ├── test ├── test.cpp ├── test.html ├── test.js └── xmake.lua └── xmake.lua /.gitignore: -------------------------------------------------------------------------------- 1 | Debug/ 2 | .vs/ 3 | 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luzhlon/websocket-cpp/HEAD/README.md -------------------------------------------------------------------------------- /doc/Overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luzhlon/websocket-cpp/HEAD/doc/Overview.md -------------------------------------------------------------------------------- /doc/WebSocketHandler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luzhlon/websocket-cpp/HEAD/doc/WebSocketHandler.md -------------------------------------------------------------------------------- /doc/WebSocketServer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luzhlon/websocket-cpp/HEAD/doc/WebSocketServer.md -------------------------------------------------------------------------------- /doc/tstream.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luzhlon/websocket-cpp/HEAD/doc/tstream.md -------------------------------------------------------------------------------- /doc/tstream_server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luzhlon/websocket-cpp/HEAD/doc/tstream_server.md -------------------------------------------------------------------------------- /src/base64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luzhlon/websocket-cpp/HEAD/src/base64.cpp -------------------------------------------------------------------------------- /src/base64.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luzhlon/websocket-cpp/HEAD/src/base64.hpp -------------------------------------------------------------------------------- /src/sha1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luzhlon/websocket-cpp/HEAD/src/sha1.cpp -------------------------------------------------------------------------------- /src/sha1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luzhlon/websocket-cpp/HEAD/src/sha1.hpp -------------------------------------------------------------------------------- /src/tstream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luzhlon/websocket-cpp/HEAD/src/tstream.hpp -------------------------------------------------------------------------------- /src/websocket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luzhlon/websocket-cpp/HEAD/src/websocket.cpp -------------------------------------------------------------------------------- /src/websocket.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luzhlon/websocket-cpp/HEAD/src/websocket.hpp -------------------------------------------------------------------------------- /src/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luzhlon/websocket-cpp/HEAD/src/xmake.lua -------------------------------------------------------------------------------- /test/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luzhlon/websocket-cpp/HEAD/test/test.cpp -------------------------------------------------------------------------------- /test/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luzhlon/websocket-cpp/HEAD/test/test.html -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luzhlon/websocket-cpp/HEAD/test/test.js -------------------------------------------------------------------------------- /test/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luzhlon/websocket-cpp/HEAD/test/xmake.lua -------------------------------------------------------------------------------- /xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luzhlon/websocket-cpp/HEAD/xmake.lua --------------------------------------------------------------------------------