summaryrefslogtreecommitdiff
path: root/src/websockets/qwebsocketprotocol_p.h
diff options
context:
space:
mode:
authorKurt Pattyn <pattyn.kurt@gmail.com>2013-11-03 15:59:08 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-11-03 15:59:43 +0100
commitf03060c27def133217d6fd292267d98e2d948449 (patch)
tree0bcc518822bd6aa5fcbe7611374084fcc1d23e3e /src/websockets/qwebsocketprotocol_p.h
parent95824d40f257a9d21012b5d1951b36a1de88b4fd (diff)
downloadqtwebsockets-f03060c27def133217d6fd292267d98e2d948449.tar.gz
Change masking to octet based processing
Change-Id: I1b450bf35760e8a5157cb1013f4668815640be5d Reviewed-by: Kurt Pattyn <pattyn.kurt@gmail.com>
Diffstat (limited to 'src/websockets/qwebsocketprotocol_p.h')
-rw-r--r--src/websockets/qwebsocketprotocol_p.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/websockets/qwebsocketprotocol_p.h b/src/websockets/qwebsocketprotocol_p.h
index 26411f7..e775179 100644
--- a/src/websockets/qwebsocketprotocol_p.h
+++ b/src/websockets/qwebsocketprotocol_p.h
@@ -67,7 +67,7 @@ inline bool isCloseCodeValid(int closeCode)
}
void Q_AUTOTEST_EXPORT mask(QByteArray *payload, quint32 maskingKey);
-void Q_AUTOTEST_EXPORT mask(Q_DECL_ALIGN(4) char *payload, quint64 size, quint32 maskingKey);
+void Q_AUTOTEST_EXPORT mask(char *payload, quint64 size, quint32 maskingKey);
} //end namespace QWebSocketProtocol
QT_END_NAMESPACE