├── .cmake.conf ├── .gitreview ├── .tag ├── CMakeLists.txt ├── LICENSES ├── BSD-3-Clause.txt ├── GFDL-1.3-no-invariants-only.txt ├── GPL-2.0-only.txt ├── GPL-3.0-only.txt ├── LGPL-3.0-only.txt └── LicenseRef-Qt-Commercial.txt ├── README.md ├── REUSE.toml ├── coin ├── axivion │ └── ci_config_linux.json └── module_config.yaml ├── dependencies.yaml ├── dist ├── REUSE.toml ├── changes-5.10.0 ├── changes-5.10.1 ├── changes-5.11.0 ├── changes-5.11.1 ├── changes-5.11.2 ├── changes-5.11.3 ├── changes-5.12.0 ├── changes-5.12.1 ├── changes-5.12.2 ├── changes-5.12.3 ├── changes-5.12.4 ├── changes-5.12.5 ├── changes-5.13.0 ├── changes-5.13.1 ├── changes-5.13.2 ├── changes-5.14.0 ├── changes-5.14.1 ├── changes-5.14.2 ├── changes-5.15.0 ├── changes-5.15.1 ├── changes-5.15.2 ├── changes-5.5.0 ├── changes-5.6.3 ├── changes-5.7.0 ├── changes-5.8.0 ├── changes-5.9.0 ├── changes-5.9.1 ├── changes-5.9.2 ├── changes-5.9.3 ├── changes-5.9.4 ├── changes-5.9.5 └── changes-5.9.6 ├── examples ├── CMakeLists.txt ├── examples.pro └── websockets │ ├── CMakeLists.txt │ ├── doc │ ├── echoclient.qdoc │ ├── echoserver.qdoc │ ├── examples.qdoc │ ├── images │ │ ├── echoclient-console-example.webp │ │ ├── echoclient-html-example.png │ │ ├── qmlwebsocketclient-example.webp │ │ ├── qmlwebsocketserver-example.webp │ │ ├── simplechat-html-example.webp │ │ ├── sslechoclient-console-example.webp │ │ └── sslechoclient-html-example.webp │ ├── qmlwebsocketclient.qdoc │ ├── qmlwebsocketserver.qdoc │ ├── simplechat.qdoc │ ├── sslechoclient.qdoc │ └── sslechoserver.qdoc │ ├── echoclient │ ├── CMakeLists.txt │ ├── echoclient.cpp │ ├── echoclient.h │ ├── echoclient.pro │ └── main.cpp │ ├── echoserver │ ├── CMakeLists.txt │ ├── echoclient.html │ ├── echoserver.cpp │ ├── echoserver.h │ ├── echoserver.pro │ └── main.cpp │ ├── qmlwebsocketclient │ ├── CMakeLists.txt │ ├── data.qrc │ ├── main.cpp │ ├── qml │ │ └── qmlwebsocketclient │ │ │ └── main.qml │ └── qmlwebsocketclient.pro │ ├── qmlwebsocketserver │ ├── CMakeLists.txt │ ├── data.qrc │ ├── main.cpp │ ├── qml │ │ └── qmlwebsocketserver │ │ │ └── main.qml │ └── qmlwebsocketserver.pro │ ├── simplechat │ ├── CMakeLists.txt │ ├── chatclient.html │ ├── chatserver.cpp │ ├── chatserver.h │ ├── main.cpp │ └── simplechat.pro │ ├── sslechoclient │ ├── CMakeLists.txt │ ├── main.cpp │ ├── sslechoclient.cpp │ ├── sslechoclient.h │ └── sslechoclient.pro │ ├── sslechoserver │ ├── CMakeLists.txt │ ├── generate.sh │ ├── localhost.cert │ ├── localhost.key │ ├── main.cpp │ ├── securesocketclient.qrc │ ├── sslechoclient.html │ ├── sslechoserver.cpp │ ├── sslechoserver.h │ └── sslechoserver.pro │ └── websockets.pro ├── licenseRule.json ├── qtwebsockets.pro ├── src ├── CMakeLists.txt ├── imports │ ├── CMakeLists.txt │ └── qmlwebsockets │ │ ├── CMakeLists.txt │ │ ├── qqmlwebsocket.cpp │ │ ├── qqmlwebsocket.h │ │ ├── qqmlwebsocketserver.cpp │ │ └── qqmlwebsocketserver.h └── websockets │ ├── CMakeLists.txt │ ├── doc │ ├── images │ │ └── websockets-pictorial-representation.jpg │ ├── qtwebsockets.qdocconf │ ├── snippets │ │ └── src_websockets_ssl_qwebsocket.cpp │ └── src │ │ ├── external-resources.qdoc │ │ ├── index.qdoc │ │ ├── overview.qdoc │ │ ├── qt6-changes.qdoc │ │ ├── qtwebsockets-module.qdoc │ │ └── qtwebsockets-toc.qdoc │ ├── qdefaultmaskgenerator_p.cpp │ ├── qdefaultmaskgenerator_p.h │ ├── qmaskgenerator.cpp │ ├── qmaskgenerator.h │ ├── qwebsocket.cpp │ ├── qwebsocket.h │ ├── qwebsocket_p.cpp │ ├── qwebsocket_p.h │ ├── qwebsocket_wasm_p.cpp │ ├── qwebsocketcorsauthenticator.cpp │ ├── qwebsocketcorsauthenticator.h │ ├── qwebsocketcorsauthenticator_p.h │ ├── qwebsocketdataprocessor.cpp │ ├── qwebsocketdataprocessor_p.h │ ├── qwebsocketframe.cpp │ ├── qwebsocketframe_p.h │ ├── qwebsockethandshakeoptions.cpp │ ├── qwebsockethandshakeoptions.h │ ├── qwebsockethandshakeoptions_p.h │ ├── qwebsockethandshakerequest.cpp │ ├── qwebsockethandshakerequest_p.h │ ├── qwebsockethandshakeresponse.cpp │ ├── qwebsockethandshakeresponse_p.h │ ├── qwebsocketprotocol.cpp │ ├── qwebsocketprotocol.h │ ├── qwebsocketprotocol_p.h │ ├── qwebsockets_global.h │ ├── qwebsocketserver.cpp │ ├── qwebsocketserver.h │ ├── qwebsocketserver_p.cpp │ └── qwebsocketserver_p.h └── tests ├── CMakeLists.txt ├── auto ├── CMakeLists.txt ├── bic │ └── data │ │ ├── QtWebSockets.5.10.0.linux-gcc-amd64.txt │ │ ├── QtWebSockets.5.11.0.linux-gcc-amd64.txt │ │ ├── QtWebSockets.5.12.0.linux-gcc-amd64.txt │ │ ├── QtWebSockets.5.13.0.linux-gcc-amd64.txt │ │ ├── QtWebSockets.5.14.0.linux-gcc-amd64.txt │ │ ├── QtWebSockets.5.6.0.linux-gcc-amd64.txt │ │ ├── QtWebSockets.5.7.0.linux-gcc-amd64.txt │ │ ├── QtWebSockets.5.8.0.linux-gcc-amd64.txt │ │ └── QtWebSockets.5.9.0.linux-gcc-amd64.txt ├── cmake │ └── CMakeLists.txt ├── qml │ ├── CMakeLists.txt │ └── qmlwebsockets │ │ ├── CMakeLists.txt │ │ ├── tst_qmlwebsockets.cpp │ │ └── tst_qmlwebsockets.qml └── websockets │ ├── CMakeLists.txt │ ├── dataprocessor │ ├── CMakeLists.txt │ └── tst_dataprocessor.cpp │ ├── handshakerequest │ ├── CMakeLists.txt │ └── tst_handshakerequest.cpp │ ├── handshakeresponse │ ├── CMakeLists.txt │ └── tst_handshakeresponse.cpp │ ├── qdefaultmaskgenerator │ ├── CMakeLists.txt │ └── tst_defaultmaskgenerator.cpp │ ├── qwebsocket │ ├── CMakeLists.txt │ └── tst_qwebsocket.cpp │ ├── qwebsocketcorsauthenticator │ ├── CMakeLists.txt │ └── tst_qwebsocketcorsauthenticator.cpp │ ├── qwebsocketserver │ ├── BLACKLIST │ ├── CMakeLists.txt │ └── tst_qwebsocketserver.cpp │ ├── shared │ ├── localhost.cert │ ├── localhost.key │ ├── selfsigned.cert │ └── selfsigned.key │ ├── websocketframe │ ├── CMakeLists.txt │ └── tst_websocketframe.cpp │ └── websocketprotocol │ ├── CMakeLists.txt │ └── tst_websocketprotocol.cpp ├── doc └── README.qdocinc ├── global └── global.cfg └── manual ├── compliance ├── compliance.pro └── tst_compliance.cpp ├── manual.pro └── websockets ├── tst_websockets.cpp └── websockets.pro /.cmake.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/.cmake.conf -------------------------------------------------------------------------------- /.gitreview: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/.gitreview -------------------------------------------------------------------------------- /.tag: -------------------------------------------------------------------------------- 1 | f269b863b994977ae8f937620c99c60e811fcbf9 2 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSES/BSD-3-Clause.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/LICENSES/BSD-3-Clause.txt -------------------------------------------------------------------------------- /LICENSES/GFDL-1.3-no-invariants-only.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/LICENSES/GFDL-1.3-no-invariants-only.txt -------------------------------------------------------------------------------- /LICENSES/GPL-2.0-only.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/LICENSES/GPL-2.0-only.txt -------------------------------------------------------------------------------- /LICENSES/GPL-3.0-only.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/LICENSES/GPL-3.0-only.txt -------------------------------------------------------------------------------- /LICENSES/LGPL-3.0-only.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/LICENSES/LGPL-3.0-only.txt -------------------------------------------------------------------------------- /LICENSES/LicenseRef-Qt-Commercial.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/LICENSES/LicenseRef-Qt-Commercial.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/README.md -------------------------------------------------------------------------------- /REUSE.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/REUSE.toml -------------------------------------------------------------------------------- /coin/axivion/ci_config_linux.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/coin/axivion/ci_config_linux.json -------------------------------------------------------------------------------- /coin/module_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/coin/module_config.yaml -------------------------------------------------------------------------------- /dependencies.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/dependencies.yaml -------------------------------------------------------------------------------- /dist/REUSE.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/dist/REUSE.toml -------------------------------------------------------------------------------- /dist/changes-5.10.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/dist/changes-5.10.0 -------------------------------------------------------------------------------- /dist/changes-5.10.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/dist/changes-5.10.1 -------------------------------------------------------------------------------- /dist/changes-5.11.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/dist/changes-5.11.0 -------------------------------------------------------------------------------- /dist/changes-5.11.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/dist/changes-5.11.1 -------------------------------------------------------------------------------- /dist/changes-5.11.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/dist/changes-5.11.2 -------------------------------------------------------------------------------- /dist/changes-5.11.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/dist/changes-5.11.3 -------------------------------------------------------------------------------- /dist/changes-5.12.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/dist/changes-5.12.0 -------------------------------------------------------------------------------- /dist/changes-5.12.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/dist/changes-5.12.1 -------------------------------------------------------------------------------- /dist/changes-5.12.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/dist/changes-5.12.2 -------------------------------------------------------------------------------- /dist/changes-5.12.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/dist/changes-5.12.3 -------------------------------------------------------------------------------- /dist/changes-5.12.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/dist/changes-5.12.4 -------------------------------------------------------------------------------- /dist/changes-5.12.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/dist/changes-5.12.5 -------------------------------------------------------------------------------- /dist/changes-5.13.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/dist/changes-5.13.0 -------------------------------------------------------------------------------- /dist/changes-5.13.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/dist/changes-5.13.1 -------------------------------------------------------------------------------- /dist/changes-5.13.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/dist/changes-5.13.2 -------------------------------------------------------------------------------- /dist/changes-5.14.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/dist/changes-5.14.0 -------------------------------------------------------------------------------- /dist/changes-5.14.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/dist/changes-5.14.1 -------------------------------------------------------------------------------- /dist/changes-5.14.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/dist/changes-5.14.2 -------------------------------------------------------------------------------- /dist/changes-5.15.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/dist/changes-5.15.0 -------------------------------------------------------------------------------- /dist/changes-5.15.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/dist/changes-5.15.1 -------------------------------------------------------------------------------- /dist/changes-5.15.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/dist/changes-5.15.2 -------------------------------------------------------------------------------- /dist/changes-5.5.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/dist/changes-5.5.0 -------------------------------------------------------------------------------- /dist/changes-5.6.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/dist/changes-5.6.3 -------------------------------------------------------------------------------- /dist/changes-5.7.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/dist/changes-5.7.0 -------------------------------------------------------------------------------- /dist/changes-5.8.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/dist/changes-5.8.0 -------------------------------------------------------------------------------- /dist/changes-5.9.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/dist/changes-5.9.0 -------------------------------------------------------------------------------- /dist/changes-5.9.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/dist/changes-5.9.1 -------------------------------------------------------------------------------- /dist/changes-5.9.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/dist/changes-5.9.2 -------------------------------------------------------------------------------- /dist/changes-5.9.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/dist/changes-5.9.3 -------------------------------------------------------------------------------- /dist/changes-5.9.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/dist/changes-5.9.4 -------------------------------------------------------------------------------- /dist/changes-5.9.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/dist/changes-5.9.5 -------------------------------------------------------------------------------- /dist/changes-5.9.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/dist/changes-5.9.6 -------------------------------------------------------------------------------- /examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/examples/CMakeLists.txt -------------------------------------------------------------------------------- /examples/examples.pro: -------------------------------------------------------------------------------- 1 | TEMPLATE = subdirs 2 | 3 | SUBDIRS = websockets 4 | -------------------------------------------------------------------------------- /examples/websockets/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/examples/websockets/CMakeLists.txt -------------------------------------------------------------------------------- /examples/websockets/doc/echoclient.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/examples/websockets/doc/echoclient.qdoc -------------------------------------------------------------------------------- /examples/websockets/doc/echoserver.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/examples/websockets/doc/echoserver.qdoc -------------------------------------------------------------------------------- /examples/websockets/doc/examples.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/examples/websockets/doc/examples.qdoc -------------------------------------------------------------------------------- /examples/websockets/doc/images/echoclient-console-example.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/examples/websockets/doc/images/echoclient-console-example.webp -------------------------------------------------------------------------------- /examples/websockets/doc/images/echoclient-html-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/examples/websockets/doc/images/echoclient-html-example.png -------------------------------------------------------------------------------- /examples/websockets/doc/images/qmlwebsocketclient-example.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/examples/websockets/doc/images/qmlwebsocketclient-example.webp -------------------------------------------------------------------------------- /examples/websockets/doc/images/qmlwebsocketserver-example.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/examples/websockets/doc/images/qmlwebsocketserver-example.webp -------------------------------------------------------------------------------- /examples/websockets/doc/images/simplechat-html-example.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/examples/websockets/doc/images/simplechat-html-example.webp -------------------------------------------------------------------------------- /examples/websockets/doc/images/sslechoclient-console-example.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/examples/websockets/doc/images/sslechoclient-console-example.webp -------------------------------------------------------------------------------- /examples/websockets/doc/images/sslechoclient-html-example.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/examples/websockets/doc/images/sslechoclient-html-example.webp -------------------------------------------------------------------------------- /examples/websockets/doc/qmlwebsocketclient.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/examples/websockets/doc/qmlwebsocketclient.qdoc -------------------------------------------------------------------------------- /examples/websockets/doc/qmlwebsocketserver.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/examples/websockets/doc/qmlwebsocketserver.qdoc -------------------------------------------------------------------------------- /examples/websockets/doc/simplechat.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/examples/websockets/doc/simplechat.qdoc -------------------------------------------------------------------------------- /examples/websockets/doc/sslechoclient.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/examples/websockets/doc/sslechoclient.qdoc -------------------------------------------------------------------------------- /examples/websockets/doc/sslechoserver.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/examples/websockets/doc/sslechoserver.qdoc -------------------------------------------------------------------------------- /examples/websockets/echoclient/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/examples/websockets/echoclient/CMakeLists.txt -------------------------------------------------------------------------------- /examples/websockets/echoclient/echoclient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/examples/websockets/echoclient/echoclient.cpp -------------------------------------------------------------------------------- /examples/websockets/echoclient/echoclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/examples/websockets/echoclient/echoclient.h -------------------------------------------------------------------------------- /examples/websockets/echoclient/echoclient.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/examples/websockets/echoclient/echoclient.pro -------------------------------------------------------------------------------- /examples/websockets/echoclient/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/examples/websockets/echoclient/main.cpp -------------------------------------------------------------------------------- /examples/websockets/echoserver/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/examples/websockets/echoserver/CMakeLists.txt -------------------------------------------------------------------------------- /examples/websockets/echoserver/echoclient.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/examples/websockets/echoserver/echoclient.html -------------------------------------------------------------------------------- /examples/websockets/echoserver/echoserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/examples/websockets/echoserver/echoserver.cpp -------------------------------------------------------------------------------- /examples/websockets/echoserver/echoserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/examples/websockets/echoserver/echoserver.h -------------------------------------------------------------------------------- /examples/websockets/echoserver/echoserver.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/examples/websockets/echoserver/echoserver.pro -------------------------------------------------------------------------------- /examples/websockets/echoserver/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/examples/websockets/echoserver/main.cpp -------------------------------------------------------------------------------- /examples/websockets/qmlwebsocketclient/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/examples/websockets/qmlwebsocketclient/CMakeLists.txt -------------------------------------------------------------------------------- /examples/websockets/qmlwebsocketclient/data.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/examples/websockets/qmlwebsocketclient/data.qrc -------------------------------------------------------------------------------- /examples/websockets/qmlwebsocketclient/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/examples/websockets/qmlwebsocketclient/main.cpp -------------------------------------------------------------------------------- /examples/websockets/qmlwebsocketclient/qml/qmlwebsocketclient/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/examples/websockets/qmlwebsocketclient/qml/qmlwebsocketclient/main.qml -------------------------------------------------------------------------------- /examples/websockets/qmlwebsocketclient/qmlwebsocketclient.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/examples/websockets/qmlwebsocketclient/qmlwebsocketclient.pro -------------------------------------------------------------------------------- /examples/websockets/qmlwebsocketserver/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/examples/websockets/qmlwebsocketserver/CMakeLists.txt -------------------------------------------------------------------------------- /examples/websockets/qmlwebsocketserver/data.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/examples/websockets/qmlwebsocketserver/data.qrc -------------------------------------------------------------------------------- /examples/websockets/qmlwebsocketserver/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/examples/websockets/qmlwebsocketserver/main.cpp -------------------------------------------------------------------------------- /examples/websockets/qmlwebsocketserver/qml/qmlwebsocketserver/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/examples/websockets/qmlwebsocketserver/qml/qmlwebsocketserver/main.qml -------------------------------------------------------------------------------- /examples/websockets/qmlwebsocketserver/qmlwebsocketserver.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/examples/websockets/qmlwebsocketserver/qmlwebsocketserver.pro -------------------------------------------------------------------------------- /examples/websockets/simplechat/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/examples/websockets/simplechat/CMakeLists.txt -------------------------------------------------------------------------------- /examples/websockets/simplechat/chatclient.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/examples/websockets/simplechat/chatclient.html -------------------------------------------------------------------------------- /examples/websockets/simplechat/chatserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/examples/websockets/simplechat/chatserver.cpp -------------------------------------------------------------------------------- /examples/websockets/simplechat/chatserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/examples/websockets/simplechat/chatserver.h -------------------------------------------------------------------------------- /examples/websockets/simplechat/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/examples/websockets/simplechat/main.cpp -------------------------------------------------------------------------------- /examples/websockets/simplechat/simplechat.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/examples/websockets/simplechat/simplechat.pro -------------------------------------------------------------------------------- /examples/websockets/sslechoclient/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/examples/websockets/sslechoclient/CMakeLists.txt -------------------------------------------------------------------------------- /examples/websockets/sslechoclient/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/examples/websockets/sslechoclient/main.cpp -------------------------------------------------------------------------------- /examples/websockets/sslechoclient/sslechoclient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/examples/websockets/sslechoclient/sslechoclient.cpp -------------------------------------------------------------------------------- /examples/websockets/sslechoclient/sslechoclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/examples/websockets/sslechoclient/sslechoclient.h -------------------------------------------------------------------------------- /examples/websockets/sslechoclient/sslechoclient.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/examples/websockets/sslechoclient/sslechoclient.pro -------------------------------------------------------------------------------- /examples/websockets/sslechoserver/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/examples/websockets/sslechoserver/CMakeLists.txt -------------------------------------------------------------------------------- /examples/websockets/sslechoserver/generate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/examples/websockets/sslechoserver/generate.sh -------------------------------------------------------------------------------- /examples/websockets/sslechoserver/localhost.cert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/examples/websockets/sslechoserver/localhost.cert -------------------------------------------------------------------------------- /examples/websockets/sslechoserver/localhost.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/examples/websockets/sslechoserver/localhost.key -------------------------------------------------------------------------------- /examples/websockets/sslechoserver/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/examples/websockets/sslechoserver/main.cpp -------------------------------------------------------------------------------- /examples/websockets/sslechoserver/securesocketclient.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/examples/websockets/sslechoserver/securesocketclient.qrc -------------------------------------------------------------------------------- /examples/websockets/sslechoserver/sslechoclient.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/examples/websockets/sslechoserver/sslechoclient.html -------------------------------------------------------------------------------- /examples/websockets/sslechoserver/sslechoserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/examples/websockets/sslechoserver/sslechoserver.cpp -------------------------------------------------------------------------------- /examples/websockets/sslechoserver/sslechoserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/examples/websockets/sslechoserver/sslechoserver.h -------------------------------------------------------------------------------- /examples/websockets/sslechoserver/sslechoserver.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/examples/websockets/sslechoserver/sslechoserver.pro -------------------------------------------------------------------------------- /examples/websockets/websockets.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/examples/websockets/websockets.pro -------------------------------------------------------------------------------- /licenseRule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/licenseRule.json -------------------------------------------------------------------------------- /qtwebsockets.pro: -------------------------------------------------------------------------------- 1 | requires(qtHaveModule(network)) 2 | load(qt_parts) 3 | -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/imports/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/src/imports/CMakeLists.txt -------------------------------------------------------------------------------- /src/imports/qmlwebsockets/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/src/imports/qmlwebsockets/CMakeLists.txt -------------------------------------------------------------------------------- /src/imports/qmlwebsockets/qqmlwebsocket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/src/imports/qmlwebsockets/qqmlwebsocket.cpp -------------------------------------------------------------------------------- /src/imports/qmlwebsockets/qqmlwebsocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/src/imports/qmlwebsockets/qqmlwebsocket.h -------------------------------------------------------------------------------- /src/imports/qmlwebsockets/qqmlwebsocketserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/src/imports/qmlwebsockets/qqmlwebsocketserver.cpp -------------------------------------------------------------------------------- /src/imports/qmlwebsockets/qqmlwebsocketserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/src/imports/qmlwebsockets/qqmlwebsocketserver.h -------------------------------------------------------------------------------- /src/websockets/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/src/websockets/CMakeLists.txt -------------------------------------------------------------------------------- /src/websockets/doc/images/websockets-pictorial-representation.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/src/websockets/doc/images/websockets-pictorial-representation.jpg -------------------------------------------------------------------------------- /src/websockets/doc/qtwebsockets.qdocconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/src/websockets/doc/qtwebsockets.qdocconf -------------------------------------------------------------------------------- /src/websockets/doc/snippets/src_websockets_ssl_qwebsocket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/src/websockets/doc/snippets/src_websockets_ssl_qwebsocket.cpp -------------------------------------------------------------------------------- /src/websockets/doc/src/external-resources.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/src/websockets/doc/src/external-resources.qdoc -------------------------------------------------------------------------------- /src/websockets/doc/src/index.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/src/websockets/doc/src/index.qdoc -------------------------------------------------------------------------------- /src/websockets/doc/src/overview.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/src/websockets/doc/src/overview.qdoc -------------------------------------------------------------------------------- /src/websockets/doc/src/qt6-changes.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/src/websockets/doc/src/qt6-changes.qdoc -------------------------------------------------------------------------------- /src/websockets/doc/src/qtwebsockets-module.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/src/websockets/doc/src/qtwebsockets-module.qdoc -------------------------------------------------------------------------------- /src/websockets/doc/src/qtwebsockets-toc.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/src/websockets/doc/src/qtwebsockets-toc.qdoc -------------------------------------------------------------------------------- /src/websockets/qdefaultmaskgenerator_p.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/src/websockets/qdefaultmaskgenerator_p.cpp -------------------------------------------------------------------------------- /src/websockets/qdefaultmaskgenerator_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/src/websockets/qdefaultmaskgenerator_p.h -------------------------------------------------------------------------------- /src/websockets/qmaskgenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/src/websockets/qmaskgenerator.cpp -------------------------------------------------------------------------------- /src/websockets/qmaskgenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/src/websockets/qmaskgenerator.h -------------------------------------------------------------------------------- /src/websockets/qwebsocket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/src/websockets/qwebsocket.cpp -------------------------------------------------------------------------------- /src/websockets/qwebsocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/src/websockets/qwebsocket.h -------------------------------------------------------------------------------- /src/websockets/qwebsocket_p.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/src/websockets/qwebsocket_p.cpp -------------------------------------------------------------------------------- /src/websockets/qwebsocket_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/src/websockets/qwebsocket_p.h -------------------------------------------------------------------------------- /src/websockets/qwebsocket_wasm_p.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/src/websockets/qwebsocket_wasm_p.cpp -------------------------------------------------------------------------------- /src/websockets/qwebsocketcorsauthenticator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/src/websockets/qwebsocketcorsauthenticator.cpp -------------------------------------------------------------------------------- /src/websockets/qwebsocketcorsauthenticator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/src/websockets/qwebsocketcorsauthenticator.h -------------------------------------------------------------------------------- /src/websockets/qwebsocketcorsauthenticator_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/src/websockets/qwebsocketcorsauthenticator_p.h -------------------------------------------------------------------------------- /src/websockets/qwebsocketdataprocessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/src/websockets/qwebsocketdataprocessor.cpp -------------------------------------------------------------------------------- /src/websockets/qwebsocketdataprocessor_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/src/websockets/qwebsocketdataprocessor_p.h -------------------------------------------------------------------------------- /src/websockets/qwebsocketframe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/src/websockets/qwebsocketframe.cpp -------------------------------------------------------------------------------- /src/websockets/qwebsocketframe_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/src/websockets/qwebsocketframe_p.h -------------------------------------------------------------------------------- /src/websockets/qwebsockethandshakeoptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/src/websockets/qwebsockethandshakeoptions.cpp -------------------------------------------------------------------------------- /src/websockets/qwebsockethandshakeoptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/src/websockets/qwebsockethandshakeoptions.h -------------------------------------------------------------------------------- /src/websockets/qwebsockethandshakeoptions_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/src/websockets/qwebsockethandshakeoptions_p.h -------------------------------------------------------------------------------- /src/websockets/qwebsockethandshakerequest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/src/websockets/qwebsockethandshakerequest.cpp -------------------------------------------------------------------------------- /src/websockets/qwebsockethandshakerequest_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/src/websockets/qwebsockethandshakerequest_p.h -------------------------------------------------------------------------------- /src/websockets/qwebsockethandshakeresponse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/src/websockets/qwebsockethandshakeresponse.cpp -------------------------------------------------------------------------------- /src/websockets/qwebsockethandshakeresponse_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/src/websockets/qwebsockethandshakeresponse_p.h -------------------------------------------------------------------------------- /src/websockets/qwebsocketprotocol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/src/websockets/qwebsocketprotocol.cpp -------------------------------------------------------------------------------- /src/websockets/qwebsocketprotocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/src/websockets/qwebsocketprotocol.h -------------------------------------------------------------------------------- /src/websockets/qwebsocketprotocol_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/src/websockets/qwebsocketprotocol_p.h -------------------------------------------------------------------------------- /src/websockets/qwebsockets_global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/src/websockets/qwebsockets_global.h -------------------------------------------------------------------------------- /src/websockets/qwebsocketserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/src/websockets/qwebsocketserver.cpp -------------------------------------------------------------------------------- /src/websockets/qwebsocketserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/src/websockets/qwebsocketserver.h -------------------------------------------------------------------------------- /src/websockets/qwebsocketserver_p.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/src/websockets/qwebsocketserver_p.cpp -------------------------------------------------------------------------------- /src/websockets/qwebsocketserver_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/src/websockets/qwebsocketserver_p.h -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/tests/auto/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/bic/data/QtWebSockets.5.10.0.linux-gcc-amd64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/tests/auto/bic/data/QtWebSockets.5.10.0.linux-gcc-amd64.txt -------------------------------------------------------------------------------- /tests/auto/bic/data/QtWebSockets.5.11.0.linux-gcc-amd64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/tests/auto/bic/data/QtWebSockets.5.11.0.linux-gcc-amd64.txt -------------------------------------------------------------------------------- /tests/auto/bic/data/QtWebSockets.5.12.0.linux-gcc-amd64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/tests/auto/bic/data/QtWebSockets.5.12.0.linux-gcc-amd64.txt -------------------------------------------------------------------------------- /tests/auto/bic/data/QtWebSockets.5.13.0.linux-gcc-amd64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/tests/auto/bic/data/QtWebSockets.5.13.0.linux-gcc-amd64.txt -------------------------------------------------------------------------------- /tests/auto/bic/data/QtWebSockets.5.14.0.linux-gcc-amd64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/tests/auto/bic/data/QtWebSockets.5.14.0.linux-gcc-amd64.txt -------------------------------------------------------------------------------- /tests/auto/bic/data/QtWebSockets.5.6.0.linux-gcc-amd64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/tests/auto/bic/data/QtWebSockets.5.6.0.linux-gcc-amd64.txt -------------------------------------------------------------------------------- /tests/auto/bic/data/QtWebSockets.5.7.0.linux-gcc-amd64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/tests/auto/bic/data/QtWebSockets.5.7.0.linux-gcc-amd64.txt -------------------------------------------------------------------------------- /tests/auto/bic/data/QtWebSockets.5.8.0.linux-gcc-amd64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/tests/auto/bic/data/QtWebSockets.5.8.0.linux-gcc-amd64.txt -------------------------------------------------------------------------------- /tests/auto/bic/data/QtWebSockets.5.9.0.linux-gcc-amd64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/tests/auto/bic/data/QtWebSockets.5.9.0.linux-gcc-amd64.txt -------------------------------------------------------------------------------- /tests/auto/cmake/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/tests/auto/cmake/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/qml/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/tests/auto/qml/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/qml/qmlwebsockets/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/tests/auto/qml/qmlwebsockets/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/qml/qmlwebsockets/tst_qmlwebsockets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/tests/auto/qml/qmlwebsockets/tst_qmlwebsockets.cpp -------------------------------------------------------------------------------- /tests/auto/qml/qmlwebsockets/tst_qmlwebsockets.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/tests/auto/qml/qmlwebsockets/tst_qmlwebsockets.qml -------------------------------------------------------------------------------- /tests/auto/websockets/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/tests/auto/websockets/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/websockets/dataprocessor/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/tests/auto/websockets/dataprocessor/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/websockets/dataprocessor/tst_dataprocessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/tests/auto/websockets/dataprocessor/tst_dataprocessor.cpp -------------------------------------------------------------------------------- /tests/auto/websockets/handshakerequest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/tests/auto/websockets/handshakerequest/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/websockets/handshakerequest/tst_handshakerequest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/tests/auto/websockets/handshakerequest/tst_handshakerequest.cpp -------------------------------------------------------------------------------- /tests/auto/websockets/handshakeresponse/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/tests/auto/websockets/handshakeresponse/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/websockets/handshakeresponse/tst_handshakeresponse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/tests/auto/websockets/handshakeresponse/tst_handshakeresponse.cpp -------------------------------------------------------------------------------- /tests/auto/websockets/qdefaultmaskgenerator/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/tests/auto/websockets/qdefaultmaskgenerator/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/websockets/qdefaultmaskgenerator/tst_defaultmaskgenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/tests/auto/websockets/qdefaultmaskgenerator/tst_defaultmaskgenerator.cpp -------------------------------------------------------------------------------- /tests/auto/websockets/qwebsocket/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/tests/auto/websockets/qwebsocket/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/websockets/qwebsocket/tst_qwebsocket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/tests/auto/websockets/qwebsocket/tst_qwebsocket.cpp -------------------------------------------------------------------------------- /tests/auto/websockets/qwebsocketcorsauthenticator/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/tests/auto/websockets/qwebsocketcorsauthenticator/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/websockets/qwebsocketcorsauthenticator/tst_qwebsocketcorsauthenticator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/tests/auto/websockets/qwebsocketcorsauthenticator/tst_qwebsocketcorsauthenticator.cpp -------------------------------------------------------------------------------- /tests/auto/websockets/qwebsocketserver/BLACKLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/tests/auto/websockets/qwebsocketserver/BLACKLIST -------------------------------------------------------------------------------- /tests/auto/websockets/qwebsocketserver/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/tests/auto/websockets/qwebsocketserver/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/websockets/qwebsocketserver/tst_qwebsocketserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/tests/auto/websockets/qwebsocketserver/tst_qwebsocketserver.cpp -------------------------------------------------------------------------------- /tests/auto/websockets/shared/localhost.cert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/tests/auto/websockets/shared/localhost.cert -------------------------------------------------------------------------------- /tests/auto/websockets/shared/localhost.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/tests/auto/websockets/shared/localhost.key -------------------------------------------------------------------------------- /tests/auto/websockets/shared/selfsigned.cert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/tests/auto/websockets/shared/selfsigned.cert -------------------------------------------------------------------------------- /tests/auto/websockets/shared/selfsigned.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/tests/auto/websockets/shared/selfsigned.key -------------------------------------------------------------------------------- /tests/auto/websockets/websocketframe/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/tests/auto/websockets/websocketframe/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/websockets/websocketframe/tst_websocketframe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/tests/auto/websockets/websocketframe/tst_websocketframe.cpp -------------------------------------------------------------------------------- /tests/auto/websockets/websocketprotocol/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/tests/auto/websockets/websocketprotocol/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/websockets/websocketprotocol/tst_websocketprotocol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/tests/auto/websockets/websocketprotocol/tst_websocketprotocol.cpp -------------------------------------------------------------------------------- /tests/doc/README.qdocinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/tests/doc/README.qdocinc -------------------------------------------------------------------------------- /tests/global/global.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/tests/global/global.cfg -------------------------------------------------------------------------------- /tests/manual/compliance/compliance.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/tests/manual/compliance/compliance.pro -------------------------------------------------------------------------------- /tests/manual/compliance/tst_compliance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/tests/manual/compliance/tst_compliance.cpp -------------------------------------------------------------------------------- /tests/manual/manual.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/tests/manual/manual.pro -------------------------------------------------------------------------------- /tests/manual/websockets/tst_websockets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/tests/manual/websockets/tst_websockets.cpp -------------------------------------------------------------------------------- /tests/manual/websockets/websockets.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtwebsockets/HEAD/tests/manual/websockets/websockets.pro --------------------------------------------------------------------------------