Commit 50662c9c authored by Tatsuhiro Tsujikawa's avatar Tatsuhiro Tsujikawa

nghttpx: Guard TLS1_3_VERSION

parent addd614e
......@@ -560,11 +560,13 @@ int ticket_key_cb(SSL *ssl, unsigned char *key_name, unsigned char *iv,
nullptr);
EVP_DecryptInit_ex(ctx, key.cipher, nullptr, key.data.enc_key.data(), iv);
#ifdef TLS1_3_VERSION
// If ticket_key_cb is not set, OpenSSL always renew ticket for
// TLSv1.3.
if (SSL_version(ssl) == TLS1_3_VERSION) {
return 2;
}
#endif // TLS1_3_VERSION
return i == 0 ? 1 : 2;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment