diff -r b72c6db6890b -r 5dc02b23752f src/network/access/qnetworkreply.cpp --- a/src/network/access/qnetworkreply.cpp Wed Jun 23 19:07:03 2010 +0300 +++ b/src/network/access/qnetworkreply.cpp Tue Jul 06 15:10:48 2010 +0300 @@ -125,6 +125,11 @@ encrypted channel could not be established. The sslErrors() signal should have been emitted. + \value TemporaryNetworkFailureError the connection was broken due + to disconnection from the network, however the system has initiated + roaming to another access point. The request should be resubmitted + and will be processed as soon as the connection is re-established. + \value ProxyConnectionRefusedError the connection to the proxy server was refused (the proxy server is not accepting requests) @@ -533,6 +538,21 @@ return QByteArray(); } +/*! \typedef QNetworkReply::RawHeaderPair + + RawHeaderPair is a QPair where the first + QByteArray is the header name and the second is the header. + */ + +/*! + Returns a list of raw header pairs. + */ +const QList& QNetworkReply::rawHeaderPairs() const +{ + Q_D(const QNetworkReply); + return d->rawHeaders; +} + /*! Returns a list of headers fields that were sent by the remote server, in the order that they were sent. Duplicate headers are