summaryrefslogtreecommitdiff
path: root/src/websockets/qmaskgenerator.cpp
diff options
context:
space:
mode:
authorNico Vertriest <nico.vertriest@digia.com>2014-03-12 14:47:17 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2014-03-14 15:26:35 +0100
commit5c7ec14e812f0be0400ffa9ffd80767d23431808 (patch)
tree2e5739f179ad60037bf2b340f438c04600b9dc00 /src/websockets/qmaskgenerator.cpp
parentac3356ed20be17d70650293c48c5bd96bcae379e (diff)
downloadqtwebsockets-5c7ec14e812f0be0400ffa9ffd80767d23431808.tar.gz
Doc: Language/writ. guidelines review Qt WebSockets
Task-number: QTBUG-37149 Change-Id: Ic0c28928404fc515de40e6fdff11849cdb2929d6 Reviewed-by: Kurt Pattyn <pattyn.kurt@gmail.com> Reviewed-by: Jerome Pasion <jerome.pasion@digia.com>
Diffstat (limited to 'src/websockets/qmaskgenerator.cpp')
-rw-r--r--src/websockets/qmaskgenerator.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/websockets/qmaskgenerator.cpp b/src/websockets/qmaskgenerator.cpp
index 04f5e1e..09305ab 100644
--- a/src/websockets/qmaskgenerator.cpp
+++ b/src/websockets/qmaskgenerator.cpp
@@ -46,9 +46,9 @@
\brief The QMaskGenerator class provides an abstract base for custom 32-bit mask generators.
- The WebSockets specification as outlined in {http://tools.ietf.org/html/rfc6455}{RFC 6455}
- requires that all communication from client to server must be masked. This is to prevent
- malicious scripts to attack bad behaving proxies.
+ The WebSockets specification as outlined in \l {http://tools.ietf.org/html/rfc6455}{RFC 6455}
+ requires that all communication from client to server be masked. This is to prevent
+ malicious scripts from attacking badly behaving proxies.
For more information about the importance of good masking,
see \l {http://w2spconf.com/2011/papers/websocket.pdf}.
By default QWebSocket uses the cryptographically insecure qrand() function.