src/network/access/qhttpnetworkreply_p.h
branchRCL_3
changeset 4 3b1da2848fc7
parent 0 1918ee327afb
child 8 3f74d0d4af4c
equal deleted inserted replaced
3:41300fa6a67c 4:3b1da2848fc7
     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