diff options
| author | Jonas M. Gastal <jgastal@profusion.mobi> | 2012-01-10 09:36:56 -0200 |
|---|---|---|
| committer | Qt by Nokia <qt-info@nokia.com> | 2012-01-19 14:31:10 +0100 |
| commit | 8bbf1a46a56ce0f0047e24a57add63d503dd7457 (patch) | |
| tree | 1f4c3c8f60a1dea6f8e694fad0746925b98f9966 /src/network/socket/qhttpsocketengine_p.h | |
| parent | 658a239eb9263d79381d16d22b0b4b2e982ce607 (diff) | |
Removing QHttpHeader and QHttpResponseHeader.
QAuthenticator used it for the convinience of QHttpSocketEngine only.
QHttpSocketEngine has now been ported to use QHttpNetworkReply to parse
HTTP responses.
Change-Id: Idf6e70aa76613aad6e3d789d81ca1b4fd73575c2
Reviewed-by: Peter Hartmann <peter.hartmann@nokia.com>
Diffstat (limited to 'src/network/socket/qhttpsocketengine_p.h')
| -rw-r--r-- | src/network/socket/qhttpsocketengine_p.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/network/socket/qhttpsocketengine_p.h b/src/network/socket/qhttpsocketengine_p.h index 1a93956bd21..615f7dd3d73 100644 --- a/src/network/socket/qhttpsocketengine_p.h +++ b/src/network/socket/qhttpsocketengine_p.h @@ -63,6 +63,7 @@ QT_BEGIN_NAMESPACE #if !defined(QT_NO_NETWORKPROXY) && !defined(QT_NO_HTTP) class QTcpSocket; +class QHttpNetworkReply; class QHttpSocketEnginePrivate; class Q_AUTOTEST_EXPORT QHttpSocketEngine : public QAbstractSocketEngine @@ -171,7 +172,7 @@ public: QNetworkProxy proxy; QString peerName; QTcpSocket *socket; - QByteArray readBuffer; // only used for parsing the proxy response + QHttpNetworkReply *reply; // only used for parsing the proxy response QHttpSocketEngine::HttpState state; QAuthenticator authenticator; bool readNotificationEnabled; |
