mirror of https://github.com/openssl/openssl.git
Remove compile guards for dtls1.3 method implementations
Reviewed-by: Neil Horman <nhorman@openssl.org> Reviewed-by: Matt Caswell <matt@openssl.org> Reviewed-by: Richard Levitte <levitte@openssl.org> (Merged from https://github.com/openssl/openssl/pull/22259)
This commit is contained in:
parent
062feab0a5
commit
b32bbd8c84
|
|
@ -125,12 +125,10 @@ IMPLEMENT_dtls1_meth_func(DTLS1_2_VERSION, 0, SSL_OP_NO_DTLSv1_2,
|
||||||
ossl_statem_accept,
|
ossl_statem_accept,
|
||||||
ossl_statem_connect, DTLSv1_2_enc_data)
|
ossl_statem_connect, DTLSv1_2_enc_data)
|
||||||
#endif
|
#endif
|
||||||
#ifndef OPENSSL_NO_DTLS1_3_METHOD
|
|
||||||
IMPLEMENT_dtls1_meth_func(DTLS1_3_VERSION, 0, SSL_OP_NO_DTLSv1_3,
|
IMPLEMENT_dtls1_meth_func(DTLS1_3_VERSION, 0, SSL_OP_NO_DTLSv1_3,
|
||||||
dtlsv1_3_method,
|
dtlsv1_3_method,
|
||||||
ossl_statem_accept,
|
ossl_statem_accept,
|
||||||
ossl_statem_connect, DTLSv1_3_enc_data)
|
ossl_statem_connect, DTLSv1_3_enc_data)
|
||||||
#endif
|
|
||||||
IMPLEMENT_dtls1_meth_func(DTLS_ANY_VERSION, 0, 0,
|
IMPLEMENT_dtls1_meth_func(DTLS_ANY_VERSION, 0, 0,
|
||||||
DTLS_method,
|
DTLS_method,
|
||||||
ossl_statem_accept,
|
ossl_statem_accept,
|
||||||
|
|
@ -151,12 +149,10 @@ IMPLEMENT_dtls1_meth_func(DTLS1_2_VERSION, 0, SSL_OP_NO_DTLSv1_2,
|
||||||
ossl_statem_accept,
|
ossl_statem_accept,
|
||||||
ssl_undefined_function, DTLSv1_2_enc_data)
|
ssl_undefined_function, DTLSv1_2_enc_data)
|
||||||
#endif
|
#endif
|
||||||
#ifndef OPENSSL_NO_DTLS1_3_METHOD
|
|
||||||
IMPLEMENT_dtls1_meth_func(DTLS1_3_VERSION, 0, SSL_OP_NO_DTLSv1_3,
|
IMPLEMENT_dtls1_meth_func(DTLS1_3_VERSION, 0, SSL_OP_NO_DTLSv1_3,
|
||||||
dtlsv1_3_server_method,
|
dtlsv1_3_server_method,
|
||||||
ossl_statem_accept,
|
ossl_statem_accept,
|
||||||
ssl_undefined_function, DTLSv1_3_enc_data)
|
ssl_undefined_function, DTLSv1_3_enc_data)
|
||||||
#endif
|
|
||||||
IMPLEMENT_dtls1_meth_func(DTLS_ANY_VERSION, 0, 0,
|
IMPLEMENT_dtls1_meth_func(DTLS_ANY_VERSION, 0, 0,
|
||||||
DTLS_server_method,
|
DTLS_server_method,
|
||||||
ossl_statem_accept,
|
ossl_statem_accept,
|
||||||
|
|
@ -181,12 +177,10 @@ IMPLEMENT_dtls1_meth_func(DTLS1_2_VERSION, 0, SSL_OP_NO_DTLSv1_2,
|
||||||
ssl_undefined_function,
|
ssl_undefined_function,
|
||||||
ossl_statem_connect, DTLSv1_2_enc_data)
|
ossl_statem_connect, DTLSv1_2_enc_data)
|
||||||
#endif
|
#endif
|
||||||
#ifndef OPENSSL_NO_DTLS1_3_METHOD
|
|
||||||
IMPLEMENT_dtls1_meth_func(DTLS1_3_VERSION, 0, SSL_OP_NO_DTLSv1_3,
|
IMPLEMENT_dtls1_meth_func(DTLS1_3_VERSION, 0, SSL_OP_NO_DTLSv1_3,
|
||||||
dtlsv1_3_client_method,
|
dtlsv1_3_client_method,
|
||||||
ssl_undefined_function,
|
ssl_undefined_function,
|
||||||
ossl_statem_connect, DTLSv1_3_enc_data)
|
ossl_statem_connect, DTLSv1_3_enc_data)
|
||||||
#endif
|
|
||||||
IMPLEMENT_dtls1_meth_func(DTLS_ANY_VERSION, 0, 0,
|
IMPLEMENT_dtls1_meth_func(DTLS_ANY_VERSION, 0, 0,
|
||||||
DTLS_client_method,
|
DTLS_client_method,
|
||||||
ssl_undefined_function,
|
ssl_undefined_function,
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue