diff options
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 6d0fc31..dda9951 100644 --- a/net/http/http_stream_factory.cc +++ b/net/http/http_stream_factory.cc @@ -167,6 +167,8 @@ void HttpStreamFactory::SetNextProtos(const std::vector<std::string>& value) { enabled_protocols_[NPN_SPDY_2] = true; } else if (value[i] == "spdy/2.1") { enabled_protocols_[NPN_SPDY_21] = true; + } else if (value[i] == "spdy/3") { + enabled_protocols_[NPN_SPDY_3] = true; } } enabled_protocols_[NPN_SPDY_1] = false; |