Merge branch 'sunpoet-master'

This commit is contained in:
Tatsuhiro Tsujikawa 2015-12-04 23:04:33 +09:00
commit e67987404b
1 changed files with 2 additions and 0 deletions

View File

@ -177,9 +177,11 @@ bool tls_h2_negotiated(ssl_socket &socket) {
unsigned int next_proto_len = 0;
SSL_get0_next_proto_negotiated(ssl, &next_proto, &next_proto_len);
#if OPENSSL_VERSION_NUMBER >= 0x10002000L
if (next_proto == nullptr) {
SSL_get0_alpn_selected(ssl, &next_proto, &next_proto_len);
}
#endif // OPENSSL_VERSION_NUMBER >= 0x10002000L
if (next_proto == nullptr) {
return false;