From 07662f93ac700d18bf2c7f5e3df1fa310327130d Mon Sep 17 00:00:00 2001 From: Peter Hartmann Date: Fri, 20 Jan 2012 13:55:15 +0100 Subject: QAbstractSocket / QSslSocket: add API to pause and resume pause and resume is currently only supported upon emitting the QSslSocket::sslErrors() signal. The API was added in QAbstractSocket to also support QAbstractSocket::proxyAuthenticationRequired() in the future. This is the first patch to support that feature on the socket level, another patch will follow to support sslErrors() and authenticationRequired() in QNetworkAccessManager / QNetworkReply. Task-number: QTBUG-19032 Change-Id: Ide2918268590ab9a01454ab26cb7fdca3dc840ab Reviewed-by: Shane Kearns --- src/network/socket/qabstractsocket_p.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/network/socket/qabstractsocket_p.h') diff --git a/src/network/socket/qabstractsocket_p.h b/src/network/socket/qabstractsocket_p.h index 4423c0250e..b0cf8906da 100644 --- a/src/network/socket/qabstractsocket_p.h +++ b/src/network/socket/qabstractsocket_p.h @@ -106,6 +106,8 @@ public: bool closeCalled; bool pendingClose; + QAbstractSocket::PauseMode pauseMode; + QString hostName; quint16 port; QHostAddress host; -- cgit v1.2.3