mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 627616. Do proxy authentication even for LOAD_ANONYMOUS loads. r=mayhemer
This commit is contained in:
parent
f93d67d116
commit
8747a6be8b
@ -128,13 +128,16 @@ nsHttpChannelAuthProvider::ProcessAuthentication(PRUint32 httpStatus,
|
||||
rv = mAuthChannel->GetLoadFlags(&loadFlags);
|
||||
if (NS_FAILED(rv)) return rv;
|
||||
|
||||
if (loadFlags & nsIRequest::LOAD_ANONYMOUS) {
|
||||
return NS_ERROR_NOT_AVAILABLE;
|
||||
}
|
||||
|
||||
nsCAutoString challenges;
|
||||
mProxyAuth = (httpStatus == 407);
|
||||
|
||||
// Do proxy auth even if we're LOAD_ANONYMOUS
|
||||
if ((loadFlags & nsIRequest::LOAD_ANONYMOUS) &&
|
||||
(!mProxyAuth || !UsingHttpProxy())) {
|
||||
LOG(("Skipping authentication for anonymous non-proxy request\n"));
|
||||
return NS_ERROR_NOT_AVAILABLE;
|
||||
}
|
||||
|
||||
rv = PrepareForAuthentication(mProxyAuth);
|
||||
if (NS_FAILED(rv))
|
||||
return rv;
|
||||
@ -199,10 +202,6 @@ nsHttpChannelAuthProvider::AddAuthorizationHeaders()
|
||||
rv = mAuthChannel->GetLoadFlags(&loadFlags);
|
||||
if (NS_FAILED(rv)) return rv;
|
||||
|
||||
if (loadFlags & nsIRequest::LOAD_ANONYMOUS) {
|
||||
return NS_OK;
|
||||
}
|
||||
|
||||
// this getter never fails
|
||||
nsHttpAuthCache *authCache = gHttpHandler->AuthCache();
|
||||
|
||||
@ -214,6 +213,11 @@ nsHttpChannelAuthProvider::AddAuthorizationHeaders()
|
||||
nsnull, // proxy has no path
|
||||
mProxyIdent);
|
||||
|
||||
if (loadFlags & nsIRequest::LOAD_ANONYMOUS) {
|
||||
LOG(("Skipping Authorization header for anonymous load\n"));
|
||||
return NS_OK;
|
||||
}
|
||||
|
||||
// check if server credentials should be sent
|
||||
nsCAutoString path, scheme;
|
||||
if (NS_SUCCEEDED(GetCurrentPath(path)) &&
|
||||
|
Loading…
Reference in New Issue
Block a user