[PR3597] Advance to the next state variant when reusing messages.
[openssl.git] / ssl / t1_srvr.c
index f1d156576916d5b92d11916c11063f1d329572ae..a1858cf1b07f82677b5380458a0a170dd16e2d7e 100644 (file)
@@ -79,15 +79,18 @@ static const SSL_METHOD *tls1_get_server_method(int ver)
 IMPLEMENT_tls_meth_func(TLS1_2_VERSION, TLSv1_2_server_method,
                        ssl3_accept,
                        ssl_undefined_function,
-                       tls1_get_server_method)
+                       tls1_get_server_method,
+                       TLSv1_2_enc_data)
 
 IMPLEMENT_tls_meth_func(TLS1_1_VERSION, TLSv1_1_server_method,
                        ssl3_accept,
                        ssl_undefined_function,
-                       tls1_get_server_method)
+                       tls1_get_server_method,
+                       TLSv1_1_enc_data)
 
 IMPLEMENT_tls_meth_func(TLS1_VERSION, TLSv1_server_method,
                        ssl3_accept,
                        ssl_undefined_function,
-                       tls1_get_server_method)
+                       tls1_get_server_method,
+                       TLSv1_enc_data)