shrpx: Made SPDY/3 default protocol in SPDY proxy mode

The reason why we choose SPDY/2 as default for SPDY prxy was due to
Chrome's window update bug. Now its fix is available in Chrome stable,
we make SPDY/3 as default.
This commit is contained in:
Tatsuhiro Tsujikawa 2012-10-01 22:37:35 +09:00
parent e69947a054
commit c0577602d1
1 changed files with 2 additions and 9 deletions

View File

@ -128,15 +128,8 @@ SSL_CTX* create_ssl_context()
verify_callback);
}
// We speak "http/1.1", "spdy/2" and "spdy/3".
if(get_config()->spdy_proxy) {
// It seems SPDY/3 flow control does not work well in proxy
// connection.
const char *protos[] = { "spdy/2", "spdy/3", "http/1.1" };
set_npn_prefs(proto_list, protos, 3);
} else {
const char *protos[] = { "spdy/3", "spdy/2", "http/1.1" };
set_npn_prefs(proto_list, protos, 3);
}
const char *protos[] = { "spdy/3", "spdy/2", "http/1.1" };
set_npn_prefs(proto_list, protos, 3);
next_proto.first = proto_list;
next_proto.second = sizeof(proto_list);