summaryrefslogtreecommitdiff
path: root/src/websockets/qwebsocketframe_p.h
diff options
context:
space:
mode:
authorFrederik Gladhorn <frederik.gladhorn@digia.com>2014-01-17 18:20:40 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2014-01-18 00:20:27 +0100
commitaa66bb128b4d853c6de200bf374758025dcd94b2 (patch)
tree97489863843aacc053c88c117b9203a6c30f5058 /src/websockets/qwebsocketframe_p.h
parent6c12e81e58b5e38c4d075cc6d7adaaaf01d80879 (diff)
downloadqtwebsockets-aa66bb128b4d853c6de200bf374758025dcd94b2.tar.gz
Add a few more const refs
In case of processPing we need to make a copy that potentially detaches when masking is requested, but pings are < 125 bytes. Before this code would copy the byte array in the same way much earlier. Change-Id: If0592bb4b508eeb11fdbf05c4bb98b9679ed0549 Reviewed-by: Kurt Pattyn <pattyn.kurt@gmail.com>
Diffstat (limited to 'src/websockets/qwebsocketframe_p.h')
-rw-r--r--src/websockets/qwebsocketframe_p.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/websockets/qwebsocketframe_p.h b/src/websockets/qwebsocketframe_p.h
index 74597a2..8c06a27 100644
--- a/src/websockets/qwebsocketframe_p.h
+++ b/src/websockets/qwebsocketframe_p.h
@@ -118,7 +118,7 @@ private:
PS_WAIT_FOR_MORE_DATA
};
- void setError(QWebSocketProtocol::CloseCode code, QString closeReason);
+ void setError(QWebSocketProtocol::CloseCode code, const QString &closeReason);
bool checkValidity();
};