diff --git a/modules/libpref/src/init/all.js b/modules/libpref/src/init/all.js index d77bab60dd72..0fa4fcf7ec61 100644 --- a/modules/libpref/src/init/all.js +++ b/modules/libpref/src/init/all.js @@ -592,6 +592,7 @@ pref("network.http.redirection-limit", 20); pref("network.http.accept-encoding" ,"gzip,deflate"); pref("network.http.pipelining" , false); +pref("network.http.pipelining.ssl" , true); // enable pipelining over SSL pref("network.http.proxy.pipelining", false); // Max number of requests in the pipeline diff --git a/netwerk/protocol/http/src/nsHttpHandler.cpp b/netwerk/protocol/http/src/nsHttpHandler.cpp index 69b051635ee0..b93dfaee797c 100644 --- a/netwerk/protocol/http/src/nsHttpHandler.cpp +++ b/netwerk/protocol/http/src/nsHttpHandler.cpp @@ -168,6 +168,7 @@ nsHttpHandler::nsHttpHandler() , mMaxPipelinedRequests(2) , mRedirectionLimit(10) , mPhishyUserPassLength(1) + , mPipeliningOverSSL(PR_FALSE) , mLastUniqueID(NowInSeconds()) , mSessionStartTime(0) , mProduct("Gecko") @@ -1019,6 +1020,12 @@ nsHttpHandler::PrefsChanged(nsIPrefBranch *prefs, const char *pref) } } + if (PREF_CHANGED(HTTP_PREF("pipelining.ssl"))) { + rv = prefs->GetBoolPref(HTTP_PREF("pipelining.ssl"), &cVar); + if (NS_SUCCEEDED(rv)) + mPipeliningOverSSL = cVar; + } + if (PREF_CHANGED(HTTP_PREF("proxy.pipelining"))) { rv = prefs->GetBoolPref(HTTP_PREF("proxy.pipelining"), &cVar); if (NS_SUCCEEDED(rv)) { @@ -1495,6 +1502,10 @@ nsHttpHandler::NewProxiedChannel(nsIURI *uri, caps = mCapabilities; if (https) { + // enable pipelining over SSL if requested + if (mPipeliningOverSSL) + caps |= NS_HTTP_ALLOW_PIPELINING; + // HACK: make sure PSM gets initialized on the main thread. nsCOMPtr spserv = do_GetService(kSocketProviderServiceCID); diff --git a/netwerk/protocol/http/src/nsHttpHandler.h b/netwerk/protocol/http/src/nsHttpHandler.h index 0e4f6adc1cd8..6ccd3de57c54 100644 --- a/netwerk/protocol/http/src/nsHttpHandler.h +++ b/netwerk/protocol/http/src/nsHttpHandler.h @@ -259,6 +259,8 @@ private: // the userpass field of the URL to obscure the actual origin server. PRUint8 mPhishyUserPassLength; + PRPackedBool mPipeliningOverSSL; + nsCString mAccept; nsCString mAcceptLanguages; nsCString mAcceptEncodings;