summaryrefslogtreecommitdiffstats
path: root/ssl/s3_srvr.c
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2015-05-14 13:48:47 +0100
committerMatt Caswell <matt@openssl.org>2015-05-16 09:20:58 +0100
commita304d385900b72467808ba0c2db91f2fc26e0160 (patch)
treef48137a46fe6c1ce779c158c233d8d5806b078c4 /ssl/s3_srvr.c
parentd45ba43dab962bdc84158efc0cdddd5f5a08cf5e (diff)
Move SSLv3_*method() functions
Move these functions into t1_clnt.c, t1_srvr.c and t1_meth.c and take advantage of the existing tls1_get*_method() functions that all the other methods are using. Since these now have to support SSLv3 anyway we might as well use the same set of get functions for both TLS and SSLv3. Reviewed-by: Kurt Roeckx <kurt@openssl.org>
Diffstat (limited to 'ssl/s3_srvr.c')
-rw-r--r--ssl/s3_srvr.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/ssl/s3_srvr.c b/ssl/s3_srvr.c
index 9835f50262..3e7f44ada9 100644
--- a/ssl/s3_srvr.c
+++ b/ssl/s3_srvr.c
@@ -167,21 +167,7 @@
static STACK_OF(SSL_CIPHER) *ssl_bytes_to_cipher_list(SSL *s, unsigned char *p,
int num, STACK_OF(SSL_CIPHER) **skp, int sslv2format);
-#ifndef OPENSSL_NO_SSL3_METHOD
-static const SSL_METHOD *ssl3_get_server_method(int ver);
-static const SSL_METHOD *ssl3_get_server_method(int ver)
-{
- if (ver == SSL3_VERSION)
- return (SSLv3_server_method());
- else
- return (NULL);
-}
-
-IMPLEMENT_ssl3_meth_func(SSLv3_server_method,
- ssl3_accept,
- ssl_undefined_function, ssl3_get_server_method)
-#endif
#ifndef OPENSSL_NO_SRP
static int ssl_check_srp_ext_ClientHello(SSL *s, int *al)
{