nghttpx: Remove BoringSSL early data for QUIC for now

This commit is contained in:
Tatsuhiro Tsujikawa 2021-09-05 22:37:20 +09:00
parent d977005126
commit 9bda8e266e
1 changed files with 0 additions and 4 deletions

View File

@ -1345,10 +1345,6 @@ SSL_CTX *create_quic_ssl_context(const char *private_key_file,
SSL_CTX_set_tlsext_status_cb(ssl_ctx, ocsp_resp_cb);
# endif // OPENSSL_IS_BORINGSSL
# ifdef OPENSSL_IS_BORINGSSL
SSL_CTX_set_early_data_enabled(ssl_ctx, 1);
# endif // OPENSSL_IS_BORINGSSL
# if OPENSSL_VERSION_NUMBER >= 0x10002000L
// ALPN selection callback
SSL_CTX_set_alpn_select_cb(ssl_ctx, quic_alpn_select_proto_cb, nullptr);