52df3181c1
This version and version 3.6.8 are fixing the following security problems: * CVE-2015-7744 * CVE-2015-6925 The activation of SSLv3 support is needed for curl. Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de> SVN-Revision: 47791
19 lines
819 B
Diff
19 lines
819 B
Diff
--- a/wolfssl/openssl/ssl.h
|
|
+++ b/wolfssl/openssl/ssl.h
|
|
@@ -401,6 +401,8 @@ typedef WOLFSSL_X509_STORE_CTX X509_STOR
|
|
/* yassl had set the default to be 500 */
|
|
#define SSL_get_default_timeout(ctx) 500
|
|
|
|
+#define SSL_set_tlsext_host_name(x, y) wolfSSL_UseSNI(x, WOLFSSL_SNI_HOST_NAME, y, strlen(y))
|
|
+
|
|
/* Lighthttp compatability */
|
|
|
|
#ifdef HAVE_LIGHTY
|
|
@@ -483,7 +485,6 @@ typedef WOLFSSL_ASN1_BIT_STRING ASN1_
|
|
#define SSL_TLSEXT_ERR_NOACK alert_warning
|
|
#define TLSEXT_NAMETYPE_host_name WOLFSSL_SNI_HOST_NAME
|
|
|
|
-#define SSL_set_tlsext_host_name wolfSSL_set_tlsext_host_name
|
|
#define SSL_get_servername wolfSSL_get_servername
|
|
#define SSL_set_SSL_CTX wolfSSL_set_SSL_CTX
|
|
#define SSL_CTX_get_verify_callback wolfSSL_CTX_get_verify_callback
|