diff options
author | mbelshe@chromium.org <mbelshe@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-01-08 04:21:08 +0000 |
---|---|---|
committer | mbelshe@chromium.org <mbelshe@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-01-08 04:21:08 +0000 |
commit | d93d833fbc80b3cbe987b35c62b8fd290c6ee791 (patch) | |
tree | 8b8fd2c3e8eeed85e697adf16a3da5f8322625ab /net/http/http_stream_factory.cc | |
parent | 882245ec433abea563a0af490b175f19d8d19f4a (diff) | |
download | chromium_src-d93d833fbc80b3cbe987b35c62b8fd290c6ee791.zip chromium_src-d93d833fbc80b3cbe987b35c62b8fd290c6ee791.tar.gz chromium_src-d93d833fbc80b3cbe987b35c62b8fd290c6ee791.tar.bz2 |
Add a port to the SPDY debugging flags so that we can force SPDY for just a
single port without forcing SPDY on all ports.
BUG=none
TEST=none
--use-spdy="ssl,port=1000"
Review URL: http://codereview.chromium.org/6083012
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@70834 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/http/http_stream_factory.cc')
-rw-r--r-- | net/http/http_stream_factory.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/net/http/http_stream_factory.cc b/net/http/http_stream_factory.cc index e30c0c5..b575f48 100644 --- a/net/http/http_stream_factory.cc +++ b/net/http/http_stream_factory.cc @@ -28,6 +28,8 @@ bool HttpStreamFactory::force_spdy_over_ssl_ = true; // static bool HttpStreamFactory::force_spdy_always_ = false; // static +std::list<HostPortPair>* HttpStreamFactory::forced_spdy_exclusions_ = NULL; +// static bool HttpStreamFactory::ignore_certificate_errors_ = false; // static |