summaryrefslogtreecommitdiff
path: root/src/websockets/doc/src/index.qdoc
diff options
context:
space:
mode:
Diffstat (limited to 'src/websockets/doc/src/index.qdoc')
-rw-r--r--src/websockets/doc/src/index.qdoc13
1 files changed, 10 insertions, 3 deletions
diff --git a/src/websockets/doc/src/index.qdoc b/src/websockets/doc/src/index.qdoc
index a277e69..0d28036 100644
--- a/src/websockets/doc/src/index.qdoc
+++ b/src/websockets/doc/src/index.qdoc
@@ -31,10 +31,17 @@
\title Qt WebSockets
\brief Provides an implementation of the WebSocket protocol.
- The QtWebSockets module implements the WebSocket protocol as specified in
- \l {http://tools.ietf.org/html/rfc6455} {RFC 6455}.
- It solely depends on Qt (no external dependencies).
+ WebSocket is a web-based protocol designed to enable two-way communication
+ between a client application and a remote host. It enables the two entities
+ to send data back and forth if the initial handshake succeeds. WebSocket is
+ the solution for applications that struggle to get real-time data feeds
+ with less network latency and minimum data exchange.
+ The Qt WebSockets module implements the WebSocket protocol as specified in
+ \l {http://tools.ietf.org/html/rfc6455} {RFC 6455}. It provides C++ and QML
+ interfaces that enable Qt applications to act as a server that can process
+ WebSocket-based requests, or a client that can consume data received from
+ the server, or both.
To use this module in your application, use the following include
statement: