Use appropriate versions of SSL3_ENC_METHOD

This commit is contained in:
Dr. Stephen Henson
2013-03-13 13:30:44 +00:00
parent 173e72e64c
commit 6de2649a6b
4 changed files with 20 additions and 11 deletions

View File

@@ -78,15 +78,18 @@ static const SSL_METHOD *tls1_get_client_method(int ver)
IMPLEMENT_tls_meth_func(TLS1_2_VERSION, TLSv1_2_client_method,
ssl_undefined_function,
ssl3_connect,
tls1_get_client_method)
tls1_get_client_method,
TLSv1_2_enc_data)
IMPLEMENT_tls_meth_func(TLS1_1_VERSION, TLSv1_1_client_method,
ssl_undefined_function,
ssl3_connect,
tls1_get_client_method)
tls1_get_client_method,
TLSv1_1_enc_data)
IMPLEMENT_tls_meth_func(TLS1_VERSION, TLSv1_client_method,
ssl_undefined_function,
ssl3_connect,
tls1_get_client_method)
tls1_get_client_method,
TLSv1_enc_data)