嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 1 元微信扫码支付:1 元
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
QtWebSockets实例代码
.
├── qtwebsockets-everywhere-src-5.11.1
│ └── qtwebsockets-everywhere-src-5.11.1
│ ├── LICENSE.GPL2
│ ├── LICENSE.GPL3
│ ├── LICENSE.GPL3-EXCEPT
│ ├── LICENSE.LGPL3
│ ├── README.md
│ ├── dist
│ │ ├── changes-5.10.0
│ │ ├── changes-5.10.1
│ │ ├── changes-5.11.0
│ │ ├── changes-5.11.1
│ │ ├── 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
│ │ ├── examples.pro
│ │ └── websockets
│ │ ├── doc
│ │ │ ├── echoclient.qdoc
│ │ │ ├── echoserver.qdoc
│ │ │ ├── examples.qdoc
│ │ │ ├── images
│ │ │ │ └── echoclient-html-example.png
│ │ │ ├── qmlwebsocketclient.qdoc
│ │ │ ├── qmlwebsocketserver.qdoc
│ │ │ ├── simplechat.qdoc
│ │ │ ├── sslechoclient.qdoc
│ │ │ └── sslechoserver.qdoc
│ │ ├── echoclient
│ │ │ ├── echoclient.cpp
│ │ │ ├── echoclient.h
│ │ │ ├── echoclient.pro
│ │ │ └── main.cpp
│ │ ├── echoserver
│ │ │ ├── echoclient.html
│ │ │ ├── echoserver.cpp
│ │ │ ├── echoserver.h
│ │ │ ├── echoserver.pro
│ │ │ └── main.cpp
│ │ ├── qmlwebsocketclient
│ │ │ ├── data.qrc
│ │ │ ├── main.cpp
│ │ │ ├── qml
│ │ │ │ └── qmlwebsocketclient
│ │ │ │ └── main.qml
│ │ │ └── qmlwebsocketclient.pro
│ │ ├── qmlwebsocketserver
│ │ │ ├── data.qrc
│ │ │ ├── main.cpp
│ │ │ ├── qml
│ │ │ │ └── qmlwebsocketserver
│ │ │ │ └── main.qml
│ │ │ └── qmlwebsocketserver.pro
│ │ ├── simplechat
│ │ │ ├── chatclient.html
│ │ │ ├── chatserver.cpp
│ │ │ ├── chatserver.h
│ │ │ ├── main.cpp
│ │ │ └── simplechat.pro
│ │ ├── sslechoclient
│ │ │ ├── main.cpp
│ │ │ ├── sslechoclient.cpp
│ │ │ ├── sslechoclient.h
│ │ │ └── sslechoclient.pro
│ │ ├── sslechoserver
│ │ │ ├── localhost.cert
│ │ │ ├── localhost.key
│ │ │ ├── main.cpp
│ │ │ ├── securesocketclient.qrc
│ │ │ ├── sslechoclient.html
│ │ │ ├── sslechoserver.cpp
│ │ │ ├── sslechoserver.h
│ │ │ └── sslechoserver.pro
│ │ └── websockets.pro
│ ├── include
│ │ └── QtWebSockets
│ │ ├── 5.11.1
│ │ │ └── QtWebSockets
│ │ │ └── private
│ │ │ ├── qdefaultmaskgenerator_p.h
│ │ │ ├── qsslserver_p.h
│ │ │ ├── qwebsocket_p.h
│ │ │ ├── qwebsocketcorsauthenticator_p.h
│ │ │ ├── qwebsocketdataprocessor_p.h
│ │ │ ├── qwebsocketframe_p.h
│ │ │ ├── qwebsockethandshakerequest_p.h
│ │ │ ├── qwebsockethandshakeresponse_p.h
│ │ │ ├── qwebsocketprotocol_p.h
│ │ │ └── qwebsocketserver_p.h
│ │ ├── QMaskGenerator
│ │ ├── QWebSocket
│ │ ├── QWebSocketCorsAuthenticator
│ │ ├── QWebSocketProtocol
│ │ ├── QWebSocketServer
│ │ ├── QtWebSockets
│ │ ├── QtWebSocketsVersion
│ │ ├── headers.pri
│ │ ├── qmaskgenerator.h
│ │ ├── qtwebsocketsversion.h
│ │ ├── qwebsocket.h
│ │ ├── qwebsocketcorsauthenticator.h
│ │ ├── qwebsocketprotocol.h
│ │ ├── qwebsockets_global.h
│ │ └── qwebsocketserver.h
│ ├── qtwebsockets.pro
│ ├── src
│ │ ├── imports
│ │ │ ├── imports.pro
│ │ │ ├── qmlwebsockets
│ │ │ │ ├── plugins.qmltypes
│ │ │ │ ├── qmldir
│ │ │ │ ├── qmlwebsockets.pro
│ │ │ │ ├── qmlwebsockets_plugin.cpp
│ │ │ │ ├── qmlwebsockets_plugin.h
│ │ │ │ ├── qqmlwebsocket.cpp
│ │ │ │ ├── qqmlwebsocket.h
│ │ │ │ ├── qqmlwebsocketserver.cpp
│ │ │ │ └── qqmlwebsocketserver.h
│ │ │ └── qmlwebsockets_compat
│ │ │ ├── plugins.qmltypes
│ │ │ ├── qmldir
│ │ │ └── qmlwebsockets_compat.pro
│ │ ├── src.pro
│ │ └── websockets
│ │ ├── doc
│ │ │ ├── images
│ │ │ │ └── websockets-pictorial-representation.jpg
│ │ │ ├── qtwebsockets.qdocconf
│ │ │ ├── snippets
│ │ │ │ └── src_websockets_ssl_qwebsocket.cpp
│ │ │ └── src
│ │ │ ├── external-resources.qdoc
│ │ │ ├── index.qdoc
│ │ │ ├── overview.qdoc
│ │ │ └── qtwebsockets-module.qdoc
│ │ ├── qdefaultmaskgenerator_p.cpp
│ │ ├── qdefaultmaskgenerator_p.h
│ │ ├── qmaskgenerator.cpp
│ │ ├── qmaskgenerator.h
│ │ ├── qsslserver.cpp
│ │ ├── qsslserver_p.h
│ │ ├── qwebsocket.cpp
│ │ ├── qwebsocket.h
│ │ ├── qwebsocket_p.cpp
│ │ ├── qwebsocket_p.h
│ │ ├── qwebsocketcorsauthenticator.cpp
│ │ ├── qwebsocketcorsauthenticator.h
│ │ ├── qwebsocketcorsauthenticator_p.h
│ │ ├── qwebsocketdataprocessor.cpp
│ │ ├── qwebsocketdataprocessor_p.h
│ │ ├── qwebsocketframe.cpp
│ │ ├── qwebsocketframe_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
│ │ └── websockets.pro
│ ├── sync.profile
│ └── tests
│ ├── auto
│ │ ├── auto.pro
│ │ ├── bic
│ │ │ └── data
│ │ │ ├── QtWebSockets.5.10.0.linux-gcc-amd64.txt
│ │ │ ├── QtWebSockets.5.11.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
│ │ │ └── cmake.pro
│ │ ├── qml
│ │ │ ├── qml.pro
│ │ │ ├── qmlwebsockets
│ │ │ │ ├── qmlwebsockets.pro
│ │ │ │ ├── tst_qmlwebsockets.cpp
│ │ │ │ └── tst_qmlwebsockets.qml
│ │ │ └── qmlwebsockets_compat
│ │ │ ├── qmlwebsockets_compat.pro
│ │ │ ├── tst_qmlwebsockets_compat.cpp
│ │ │ └── tst_qmlwebsockets_compat.qml
│ │ └── websockets
│ │ ├── dataprocessor
│ │ │ ├── dataprocessor.pro
│ │ │ └── tst_dataprocessor.cpp
│ │ ├── handshakerequest
│ │ │ ├── handshakerequest.pro
│ │ │ └── tst_handshakerequest.cpp
│ │ ├── handshakeresponse
│ │ │ ├── handshakeresponse.pro
│ │ │ └── tst_handshakeresponse.cpp
│ │ ├── qdefaultmaskgenerator
│ │ │ ├── qdefaultmaskgenerator.pro
│ │ │ └── tst_defaultmaskgenerator.cpp
│ │ ├── qwebsocket
│ │ │ ├── qwebsocket.pro
│ │ │ └── tst_qwebsocket.cpp
│ │ ├── qwebsocketcorsauthenticator
│ │ │ ├── qwebsocketcorsauthenticator.pro
│ │ │ └── tst_qwebsocketcorsauthenticator.cpp
│ │ ├── qwebsocketserver
│ │ │ ├── qwebsocketserver.pro
│ │ │ └── tst_qwebsocketserver.cpp
│ │ ├── shared
│ │ │ ├── localhost.cert
│ │ │ ├── localhost.key
│ │ │ └── qwebsocketshared.qrc
│ │ ├── websocketframe
│ │ │ ├── tst_websocketframe.cpp
│ │ │ └── websocketframe.pro
│ │ ├── websocketprotocol
│ │ │ ├── tst_websocketprotocol.cpp
│ │ │ └── websocketprotocol.pro
│ │ └── websockets.pro
│ ├── doc
│ │ └── README
│ ├── global
│ │ └── global.cfg
│ ├── manual
│ │ ├── compliance
│ │ │ ├── compliance.pro
│ │ │ └── tst_compliance.cpp
│ │ ├── manual.pro
│ │ └── websockets
│ │ ├── tst_websockets.cpp
│ │ └── websockets.pro
│ └── tests.pro
└── 好例子网_qtwebsockets.rar
56 directories, 190 files