QNAM: Function re-ordering
parent
aef6239e7d
commit
ea4df8586e
|
|
@ -359,6 +359,38 @@ bool QNetworkReplyHttpImpl::canReadLine () const
|
|||
return d->downloadMultiBuffer.canReadLine();
|
||||
}
|
||||
|
||||
#ifndef QT_NO_OPENSSL
|
||||
void QNetworkReplyHttpImpl::ignoreSslErrors()
|
||||
{
|
||||
Q_D(QNetworkReplyHttpImpl);
|
||||
|
||||
d->pendingIgnoreAllSslErrors = true;
|
||||
}
|
||||
|
||||
void QNetworkReplyHttpImpl::ignoreSslErrorsImplementation(const QList<QSslError> &errors)
|
||||
{
|
||||
Q_D(QNetworkReplyHttpImpl);
|
||||
|
||||
// the pending list is set if QNetworkReply::ignoreSslErrors(const QList<QSslError> &errors)
|
||||
// is called before QNetworkAccessManager::get() (or post(), etc.)
|
||||
d->pendingIgnoreSslErrorsList = errors;
|
||||
}
|
||||
|
||||
void QNetworkReplyHttpImpl::setSslConfigurationImplementation(const QSslConfiguration &newconfig)
|
||||
{
|
||||
// Setting a SSL configuration on a reply is not supported. The user needs to set
|
||||
// her/his QSslConfiguration on the QNetworkRequest.
|
||||
Q_UNUSED(newconfig);
|
||||
}
|
||||
|
||||
QSslConfiguration QNetworkReplyHttpImpl::sslConfigurationImplementation() const
|
||||
{
|
||||
Q_D(const QNetworkReplyHttpImpl);
|
||||
qDebug() << "sslConfigurationImplementation";
|
||||
return d->sslConfiguration;
|
||||
}
|
||||
#endif
|
||||
|
||||
QNetworkReplyHttpImplPrivate::QNetworkReplyHttpImplPrivate()
|
||||
// FIXME order etc
|
||||
: QNetworkReplyPrivate()
|
||||
|
|
@ -1265,38 +1297,6 @@ bool QNetworkReplyHttpImplPrivate::sendCacheContents(const QNetworkCacheMetaData
|
|||
return true;
|
||||
}
|
||||
|
||||
#ifndef QT_NO_OPENSSL
|
||||
void QNetworkReplyHttpImpl::ignoreSslErrors()
|
||||
{
|
||||
Q_D(QNetworkReplyHttpImpl);
|
||||
|
||||
d->pendingIgnoreAllSslErrors = true;
|
||||
}
|
||||
|
||||
void QNetworkReplyHttpImpl::ignoreSslErrorsImplementation(const QList<QSslError> &errors)
|
||||
{
|
||||
Q_D(QNetworkReplyHttpImpl);
|
||||
|
||||
// the pending list is set if QNetworkReply::ignoreSslErrors(const QList<QSslError> &errors)
|
||||
// is called before QNetworkAccessManager::get() (or post(), etc.)
|
||||
d->pendingIgnoreSslErrorsList = errors;
|
||||
}
|
||||
|
||||
void QNetworkReplyHttpImpl::setSslConfigurationImplementation(const QSslConfiguration &newconfig)
|
||||
{
|
||||
// Setting a SSL configuration on a reply is not supported. The user needs to set
|
||||
// her/his QSslConfiguration on the QNetworkRequest.
|
||||
Q_UNUSED(newconfig);
|
||||
}
|
||||
|
||||
QSslConfiguration QNetworkReplyHttpImpl::sslConfigurationImplementation() const
|
||||
{
|
||||
Q_D(const QNetworkReplyHttpImpl);
|
||||
qDebug() << "sslConfigurationImplementation";
|
||||
return d->sslConfiguration;
|
||||
}
|
||||
#endif
|
||||
|
||||
QNetworkCacheMetaData QNetworkReplyHttpImplPrivate::fetchCacheMetaData(const QNetworkCacheMetaData &oldMetaData) const
|
||||
{
|
||||
Q_Q(const QNetworkReplyHttpImpl);
|
||||
|
|
|
|||
|
|
@ -180,18 +180,14 @@ public:
|
|||
void _q_finished();
|
||||
|
||||
|
||||
// ?
|
||||
void consume(qint64 count);
|
||||
|
||||
void setDownloadBuffer(QSharedPointer<char> sp, qint64 size);
|
||||
char* getDownloadBuffer(qint64 size);
|
||||
|
||||
// FIXME
|
||||
void finished();
|
||||
void error(QNetworkReply::NetworkError code, const QString &errorString);
|
||||
void _q_error(QNetworkReply::NetworkError code, const QString &errorString);
|
||||
void metaDataChanged();
|
||||
|
||||
void redirectionRequested(const QUrl &target);
|
||||
void checkForRedirect(const int statusCode);
|
||||
|
||||
|
||||
// incoming from user
|
||||
|
|
@ -249,6 +245,8 @@ public:
|
|||
QByteDataBuffer pendingDownloadData; // For signal compression
|
||||
qint64 bytesDownloaded;
|
||||
qint64 lastBytesDownloaded;
|
||||
void setDownloadBuffer(QSharedPointer<char> sp, qint64 size);
|
||||
char* getDownloadBuffer(qint64 size);
|
||||
|
||||
// only used when the "zero copy" style is used. Else downloadMultiBuffer is used.
|
||||
// Please note that the whole "zero copy" download buffer API is private right now. Do not use it.
|
||||
|
|
@ -279,7 +277,6 @@ public:
|
|||
void postRequest();
|
||||
|
||||
|
||||
void checkForRedirect(const int statusCode);
|
||||
|
||||
public:
|
||||
// From HTTP thread:
|
||||
|
|
|
|||
Loading…
Reference in New Issue