Created
March 18, 2015 12:01
-
-
Save Raboo/6886e425faf9afbe4c61 to your computer and use it in GitHub Desktop.
httperf SSLv3 to TLSv1 patch
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- httperf/src/httperf.c 2015-03-17 15:34:53.523565000 +0100 | |
+++ httperf/src/httperf.c.patch 2015-03-17 15:38:00.748836588 +0100 | |
@@ -808,7 +808,7 @@ | |
SSLeay_add_ssl_algorithms (); | |
/* for some strange reason, SSLv23_client_method () doesn't work here */ | |
- ssl_ctx = SSL_CTX_new (SSLv3_client_method ()); | |
+ ssl_ctx = SSL_CTX_new (TLSv1_client_method ()); | |
if (!ssl_ctx) | |
{ | |
ERR_print_errors_fp (stderr); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment