aboutsummaryrefslogtreecommitdiffstats
path: root/src/websockets/qwebsocket.h
diff options
context:
space:
mode:
authorKurt Pattyn <pattyn.kurt@gmail.com>2014-02-07 18:06:58 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2014-02-07 18:58:35 +0100
commit6d64f337102d6181c8578daf8ba0b675049f6039 (patch)
tree36a913a15c599a73cc1b7e8050b118ad0b983d7b /src/websockets/qwebsocket.h
parentf7b5e9bce59c5dfdd9cc8cc2f14bbb3c6baa70d7 (diff)
Sanitize open() method
Removed the mask parameter because a web socket client does not have a choice between masking and not masking. Change-Id: I3c33acc235bb2a99476abb6201e6dbb6f881dd70 Reviewed-by: Milian Wolff <milian.wolff@kdab.com> Reviewed-by: Kurt Pattyn <pattyn.kurt@gmail.com>
Diffstat (limited to 'src/websockets/qwebsocket.h')
-rw-r--r--src/websockets/qwebsocket.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/websockets/qwebsocket.h b/src/websockets/qwebsocket.h
index 7d1e544..660b3a3 100644
--- a/src/websockets/qwebsocket.h
+++ b/src/websockets/qwebsocket.h
@@ -112,7 +112,7 @@ public:
public Q_SLOTS:
void close(QWebSocketProtocol::CloseCode closeCode = QWebSocketProtocol::CloseCodeNormal,
const QString &reason = QString());
- void open(const QUrl &url, bool mask = true);
+ void open(const QUrl &url);
void ping(const QByteArray &payload = QByteArray());
#ifndef QT_NO_SSL
void ignoreSslErrors();