=head1 NAME
SSL_client_version, SSL_get_version, SSL_is_dtls, SSL_is_tls, SSL_is_quic,
-SSL_version - get the protocol information of a connection
+SSL_CTX_is_quic, SSL_version - get the protocol information of a connection
=head1 SYNOPSIS
int SSL_is_dtls(const SSL *ssl);
int SSL_is_tls(const SSL *ssl);
int SSL_is_quic(const SSL *ssl);
+ int SSL_CTX_is_quic(const SSL_CTX *ctx);
int SSL_version(const SSL *s);
SSL_is_quic() returns 1 if the connection is using QUIC or 0 if not.
+SSL_CTX_is_quic() returns 1 if the ctx creates QUIC SSL objects or 0 if not.
+
=head1 RETURN VALUES
The SSL_is_dtls() function was added in OpenSSL 1.1.0. The SSL_is_tls() and
SSL_is_quic() functions were added in OpenSSL 3.2.
+The SSL_CTX_is_quic() function was added in OpenSSL 4.0
+
=head1 COPYRIGHT
Copyright 2001-2023 The OpenSSL Project Authors. All Rights Reserved.
int SSL_is_dtls(const SSL *s);
int SSL_is_tls(const SSL *s);
int SSL_is_quic(const SSL *s);
+int SSL_CTX_is_quic(const SSL_CTX *c);
+
__owur int SSL_set_session_id_context(SSL *ssl, const unsigned char *sid_ctx,
unsigned int sid_ctx_len);
SSL_set_quic_tls_cbs ? 4_0_0 EXIST::FUNCTION:
SSL_set_quic_tls_transport_params ? 4_0_0 EXIST::FUNCTION:
SSL_set_quic_tls_early_data_enabled ? 4_0_0 EXIST::FUNCTION:
+SSL_CTX_is_quic ? 4_0_0 EXIST::FUNCTION: