Deleted Added
sdiff udiff text old ( 110007 ) new ( 160817 )
full compact
1/* ssl/s2_meth.c */
2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
3 * All rights reserved.
4 *
5 * This package is an SSL implementation written
6 * by Eric Young (eay@cryptsoft.com).
7 * The implementation was written so as to conform with Netscapes SSL.
8 *

--- 56 unchanged lines hidden (view full) ---

65static SSL_METHOD *ssl2_get_method(int ver)
66 {
67 if (ver == SSL2_VERSION)
68 return(SSLv2_method());
69 else
70 return(NULL);
71 }
72
73IMPLEMENT_ssl2_meth_func(SSLv2_method,
74 ssl2_accept,
75 ssl2_connect,
76 ssl2_get_method)
77
78#else /* !OPENSSL_NO_SSL2 */
79
80# if PEDANTIC
81static void *dummy=&dummy;
82# endif
83
84#endif