summaryrefslogtreecommitdiff
path: root/src/websockets/qwebsocket.cpp
diff options
context:
space:
mode:
authorKurt Pattyn <pattyn.kurt@gmail.com>2013-10-31 09:31:25 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-10-31 11:52:27 +0100
commit3501d4e9c315af97f0d7878d1af7f4300a815ea3 (patch)
treed8ada550d4ef45aad87bc44150b4a36218e06a50 /src/websockets/qwebsocket.cpp
parent7a156a994dd093de80289574d0b542d59a5dd955 (diff)
downloadqtwebsockets-3501d4e9c315af97f0d7878d1af7f4300a815ea3.tar.gz
Implement of secure web sockets
Change-Id: I1f96d5e4e327eae211fd6b458168e1f7607e2dcf Reviewed-by: Kurt Pattyn <pattyn.kurt@gmail.com>
Diffstat (limited to 'src/websockets/qwebsocket.cpp')
-rw-r--r--src/websockets/qwebsocket.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/websockets/qwebsocket.cpp b/src/websockets/qwebsocket.cpp
index d209f37..b1fc57c 100644
--- a/src/websockets/qwebsocket.cpp
+++ b/src/websockets/qwebsocket.cpp
@@ -107,6 +107,16 @@ not been filled in with new information when the signal returns.
\sa close()
*/
+/*!
+ \fn void QWebSocket::bytesWritten(qint64 bytes)
+
+ This signal is emitted every time a payload of data has been written to the socket.
+ The \a bytes argument is set to the number of bytes that were written in this payload.
+
+ \note This signal has the same meaning both for secure and non-secure websockets.
+ As opposed to QSslSocket, bytesWritten() is only emitted when encrypted data is effectively written (\sa {{QSslSocket:}}{{encryptedBytesWritten}}).
+ \sa close()
+*/
/*!
\fn void QWebSocket::textFrameReceived(QString frame, bool isLastFrame);