diff options
author | Markus Goetz <Markus.Goetz@nokia.com> | 2009-10-22 09:31:27 (GMT) |
---|---|---|
committer | Markus Goetz <Markus.Goetz@nokia.com> | 2009-10-22 15:12:58 (GMT) |
commit | 760f221e7f1550ecc8198fb0c01c65ee13ded7f4 (patch) | |
tree | 667dff08f0213f5a1285eef34070fa3a76a40224 /src/network/ssl/qsslsocket.h | |
parent | 0e4d5715992f9d7d7e1c598527907797e0b98427 (diff) | |
download | Qt-760f221e7f1550ecc8198fb0c01c65ee13ded7f4.zip Qt-760f221e7f1550ecc8198fb0c01c65ee13ded7f4.tar.gz Qt-760f221e7f1550ecc8198fb0c01c65ee13ded7f4.tar.bz2 |
QSslSocket: Trigger a SSL transmission when reading from the socket.
In certain cases a SSL transfer stalled when a readBufferSize was set.
This change triggers a SSL transmission when there is data on the
socket waiting to be decrypted.
Task-number: QTBUG-3860
Reviewed-by: Thiago
Diffstat (limited to 'src/network/ssl/qsslsocket.h')
-rw-r--r-- | src/network/ssl/qsslsocket.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/network/ssl/qsslsocket.h b/src/network/ssl/qsslsocket.h index adb206c..82cda35 100644 --- a/src/network/ssl/qsslsocket.h +++ b/src/network/ssl/qsslsocket.h @@ -207,6 +207,7 @@ private: Q_PRIVATE_SLOT(d_func(), void _q_readyReadSlot()) Q_PRIVATE_SLOT(d_func(), void _q_bytesWrittenSlot(qint64)) Q_PRIVATE_SLOT(d_func(), void _q_flushWriteBuffer()) + Q_PRIVATE_SLOT(d_func(), void _q_flushReadBuffer()) friend class QSslSocketBackendPrivate; }; |