Backport TLS v1.1 support from HEAD, ssl/ changes
This commit is contained in:
@@ -67,13 +67,19 @@
|
||||
static const SSL_METHOD *tls1_get_server_method(int ver);
|
||||
static const SSL_METHOD *tls1_get_server_method(int ver)
|
||||
{
|
||||
if (ver == TLS1_1_VERSION)
|
||||
return TLSv1_1_server_method();
|
||||
if (ver == TLS1_VERSION)
|
||||
return(TLSv1_server_method());
|
||||
else
|
||||
return(NULL);
|
||||
return TLSv1_server_method();
|
||||
return NULL;
|
||||
}
|
||||
|
||||
IMPLEMENT_tls1_meth_func(TLSv1_server_method,
|
||||
IMPLEMENT_tls_meth_func(TLS1_1_VERSION, TLSv1_1_server_method,
|
||||
ssl3_accept,
|
||||
ssl_undefined_function,
|
||||
tls1_get_server_method)
|
||||
|
||||
IMPLEMENT_tls_meth_func(TLS1_VERSION, TLSv1_server_method,
|
||||
ssl3_accept,
|
||||
ssl_undefined_function,
|
||||
tls1_get_server_method)
|
||||
|
||||
Reference in New Issue
Block a user