aboutsummaryrefslogtreecommitdiff
path: root/benchmarks/postal/files/patch-basictcp.cpp
blob: 9bf6b52f4116e4117752410b0e3c1004df0a2e67 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
--- basictcp.cpp.orig	2012-01-01 11:36:27 UTC
+++ basictcp.cpp
@@ -102,10 +102,18 @@ int base_tcp::ConnectTLS()
   m_sslMeth = NULL;
   m_sslCtx = NULL;
   m_ssl = NULL;
-  m_sslMeth = SSLv2_client_method();
+#ifndef OPENSSL_NO_SSL3
+  m_sslMeth = SSLv3_client_method();
+#else
+  m_sslMeth = SSLv23_client_method();
+#endif
   if(m_sslMeth == NULL)
   {
-    fprintf(stderr, "Can't get SSLv2_client_method.\n");
+#ifndef OPENSSL_NO_SSL3
+    fprintf(stderr, "Can't get SSLv3_client_method.\n");
+#else
+    fprintf(stderr, "Can't get SSLv23_client_method.\n");
+#endif
     return 2;
   }
   m_sslCtx = SSL_CTX_new(m_sslMeth);