equal
deleted
inserted
replaced
1 /**************************************************************************** |
1 /**************************************************************************** |
2 ** |
2 ** |
3 ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). |
3 ** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). |
4 ** All rights reserved. |
4 ** All rights reserved. |
5 ** Contact: Nokia Corporation (qt-info@nokia.com) |
5 ** Contact: Nokia Corporation (qt-info@nokia.com) |
6 ** |
6 ** |
7 ** This file is part of the QtNetwork module of the Qt Toolkit. |
7 ** This file is part of the QtNetwork module of the Qt Toolkit. |
8 ** |
8 ** |
123 QString reasonPhrase() const; |
123 QString reasonPhrase() const; |
124 |
124 |
125 qint64 bytesAvailable() const; |
125 qint64 bytesAvailable() const; |
126 qint64 bytesAvailableNextBlock() const; |
126 qint64 bytesAvailableNextBlock() const; |
127 QByteArray readAny(); |
127 QByteArray readAny(); |
|
128 void setDownstreamLimited(bool t); |
128 |
129 |
129 bool isFinished() const; |
130 bool isFinished() const; |
130 |
131 |
131 bool isPipeliningUsed() const; |
132 bool isPipeliningUsed() const; |
132 |
133 |
227 QByteDataBuffer responseData; // uncompressed body |
228 QByteDataBuffer responseData; // uncompressed body |
228 QByteArray compressedData; // compressed body (temporary) |
229 QByteArray compressedData; // compressed body (temporary) |
229 bool requestIsPrepared; |
230 bool requestIsPrepared; |
230 |
231 |
231 bool pipeliningUsed; |
232 bool pipeliningUsed; |
|
233 bool downstreamLimited; |
232 }; |
234 }; |
233 |
235 |
234 |
236 |
235 |
237 |
236 |
238 |