Add missing QT_NO_NETWORKPROXY guards around HTTP connect statements
Without these, a spew of connection warnings will occur when using HTTP on Qt builds with QT_NO_NETWORKPROXY. Change-Id: I330f6d98d1abdbadc57768dc48b8fab0ee1f6655 Reviewed-by: Oliver Wolff <oliver.wolff@digia.com> Reviewed-by: Peter Hartmann <phartmann@blackberry.com>
This commit is contained in:
parent
2d019ddc93
commit
eb211d74cc
@ -352,8 +352,10 @@ void QHttpThreadDelegate::startRequest()
|
|||||||
|
|
||||||
connect(httpReply, SIGNAL(authenticationRequired(QHttpNetworkRequest,QAuthenticator*)),
|
connect(httpReply, SIGNAL(authenticationRequired(QHttpNetworkRequest,QAuthenticator*)),
|
||||||
this, SLOT(synchronousAuthenticationRequiredSlot(QHttpNetworkRequest,QAuthenticator*)));
|
this, SLOT(synchronousAuthenticationRequiredSlot(QHttpNetworkRequest,QAuthenticator*)));
|
||||||
|
#ifndef QT_NO_NETWORKPROXY
|
||||||
connect(httpReply, SIGNAL(proxyAuthenticationRequired(QNetworkProxy,QAuthenticator*)),
|
connect(httpReply, SIGNAL(proxyAuthenticationRequired(QNetworkProxy,QAuthenticator*)),
|
||||||
this, SLOT(synchronousProxyAuthenticationRequiredSlot(QNetworkProxy,QAuthenticator*)));
|
this, SLOT(synchronousProxyAuthenticationRequiredSlot(QNetworkProxy,QAuthenticator*)));
|
||||||
|
#endif
|
||||||
|
|
||||||
// Don't care about ignored SSL errors for now in the synchronous HTTP case.
|
// Don't care about ignored SSL errors for now in the synchronous HTTP case.
|
||||||
} else if (!synchronous) {
|
} else if (!synchronous) {
|
||||||
@ -373,8 +375,10 @@ void QHttpThreadDelegate::startRequest()
|
|||||||
// Connect the reply signals that we can directly forward
|
// Connect the reply signals that we can directly forward
|
||||||
connect(httpReply, SIGNAL(authenticationRequired(QHttpNetworkRequest,QAuthenticator*)),
|
connect(httpReply, SIGNAL(authenticationRequired(QHttpNetworkRequest,QAuthenticator*)),
|
||||||
this, SIGNAL(authenticationRequired(QHttpNetworkRequest,QAuthenticator*)));
|
this, SIGNAL(authenticationRequired(QHttpNetworkRequest,QAuthenticator*)));
|
||||||
|
#ifndef QT_NO_NETWORKPROXY
|
||||||
connect(httpReply, SIGNAL(proxyAuthenticationRequired(QNetworkProxy,QAuthenticator*)),
|
connect(httpReply, SIGNAL(proxyAuthenticationRequired(QNetworkProxy,QAuthenticator*)),
|
||||||
this, SIGNAL(proxyAuthenticationRequired(QNetworkProxy,QAuthenticator*)));
|
this, SIGNAL(proxyAuthenticationRequired(QNetworkProxy,QAuthenticator*)));
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
connect(httpReply, SIGNAL(cacheCredentials(QHttpNetworkRequest,QAuthenticator*)),
|
connect(httpReply, SIGNAL(cacheCredentials(QHttpNetworkRequest,QAuthenticator*)),
|
||||||
@ -706,9 +710,11 @@ void QHttpThreadDelegate::synchronousProxyAuthenticationRequiredSlot(const QNet
|
|||||||
a->setPassword(credential.password);
|
a->setPassword(credential.password);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifndef QT_NO_NETWORKPROXY
|
||||||
// Disconnect this connection now since we only want to ask the authentication cache once.
|
// Disconnect this connection now since we only want to ask the authentication cache once.
|
||||||
QObject::disconnect(httpReply, SIGNAL(proxyAuthenticationRequired(QNetworkProxy,QAuthenticator*)),
|
QObject::disconnect(httpReply, SIGNAL(proxyAuthenticationRequired(QNetworkProxy,QAuthenticator*)),
|
||||||
this, SLOT(synchronousProxyAuthenticationRequiredSlot(QNetworkProxy,QAuthenticator*)));
|
this, SLOT(synchronousProxyAuthenticationRequiredSlot(QNetworkProxy,QAuthenticator*)));
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
x
Reference in New Issue
Block a user