Make i2r_sctlist static.
[openssl.git] / ssl / t1_clnt.c
index b06bada6f22d32191577caf5cbe5f99cf3e29df0..e7998d1d9e92ca8a7f90508a23207e5e3b1e34a8 100644 (file)
@@ -66,6 +66,8 @@
 static const SSL_METHOD *tls1_get_client_method(int ver);
 static const SSL_METHOD *tls1_get_client_method(int ver)
        {
+       if (ver == TLS1_2_VERSION)
+               return TLSv1_2_client_method();
        if (ver == TLS1_1_VERSION)
                return TLSv1_1_client_method();
        if (ver == TLS1_VERSION)
@@ -73,13 +75,21 @@ static const SSL_METHOD *tls1_get_client_method(int ver)
        return NULL;
        }
 
+IMPLEMENT_tls_meth_func(TLS1_2_VERSION, TLSv1_2_client_method,
+                       ssl_undefined_function,
+                       ssl3_connect,
+                       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)