• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

dist/H21-Dec-2020-853561

src/H03-May-2022-9,8835,207

.qmake.confH A D21-Dec-202097 74

.tagH A D21-Dec-202041 21

LICENSE.GPL2H A D21-Dec-202017.7 KiB340281

LICENSE.GPL3H A D21-Dec-202034.3 KiB675553

LICENSE.GPL3-EXCEPTH A D21-Dec-202035.5 KiB705574

LICENSE.LGPL3H A D21-Dec-20207.5 KiB166128

README.mdH A D21-Dec-2020937 3524

qtwebsockets.proH A D21-Dec-202047 32

sync.profileH A D21-Dec-2020160 118

README.md

1### Introduction
2`QtWebSockets` is a pure Qt implementation of WebSockets - both client and server.
3It is implemented as a Qt add-on module, that can easily be embedded into existing Qt projects. It has no other dependencies than Qt.
4
5### Features
6* Client and server capable
7* Text and binary sockets
8* Frame-based and message-based signals
9* Strict Unicode checking
10* WSS and proxy support
11
12### Requirements
13Qt 5.x
14
15### Build And Usage
16Checkout the source code from code.qt.io
17Go into the source directory and execute:
18
19    qmake
20    make
21    make install
22
23
24The last command will install `QtWebSockets` as a Qt module.
25
26To use, add `websockets` to the QT variable.
27
28`QT += websockets`
29
30### Compliance
31`QtWebSockets` is compliant with [RFC6455](http://datatracker.ietf.org/doc/rfc6455/?include_text=1) and has been tested with the [Autobahn Testsuite](http://autobahn.ws/testsuite).
32
33### Missing Features
34* Extensions and sub-protocols
35