diff options
author | Kurt Pattyn <pattyn.kurt@gmail.com> | 2014-01-25 20:08:17 +0100 |
---|---|---|
committer | The Qt Project <gerrit-noreply@qt-project.org> | 2014-02-01 17:01:19 +0100 |
commit | b0134b21df856199b84f62ebf44f4a0f7a9cb02f (patch) | |
tree | 664352be5ed8c6f59fc54a586d75bc3d8aeaeb24 /src/websockets/qwebsocket_p.cpp | |
parent | 3dbdc9a9e6153b46c01269c85804609123f1bd7d (diff) | |
download | qtwebsockets-b0134b21df856199b84f62ebf44f4a0f7a9cb02f.tar.gz |
Cleanup inline comments
Change-Id: I8d96bb2b5c1cf211de50939dc2141572750a4b70
Reviewed-by: Frederik Gladhorn <frederik.gladhorn@digia.com>
Diffstat (limited to 'src/websockets/qwebsocket_p.cpp')
-rw-r--r-- | src/websockets/qwebsocket_p.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/websockets/qwebsocket_p.cpp b/src/websockets/qwebsocket_p.cpp index 631e016..41c37eb 100644 --- a/src/websockets/qwebsocket_p.cpp +++ b/src/websockets/qwebsocket_p.cpp @@ -628,9 +628,8 @@ QByteArray QWebSocketPrivate::getFrameHeader(QWebSocketProtocol::OpCode opCode, bool ok = payloadLength <= 0x7FFFFFFFFFFFFFFFULL; if (Q_LIKELY(ok)) { - //FIN, RSV1-3, opcode - byte = static_cast<quint8>((opCode & 0x0F) | (lastFrame ? 0x80 : 0x00)); //FIN, opcode - //RSV-1, RSV-2 and RSV-3 are zero + //FIN, RSV1-3, opcode (RSV-1, RSV-2 and RSV-3 are zero) + byte = static_cast<quint8>((opCode & 0x0F) | (lastFrame ? 0x80 : 0x00)); header.append(static_cast<char>(byte)); byte = 0x00; |