From: Daniel Golle Date: Thu, 24 May 2018 16:44:27 +0000 (+0200) Subject: don't use SSL_CTX_set_ecdh_auto with wolfSSL X-Git-Url: http://git.openwrt.org/?p=project%2Fustream-ssl.git;a=commitdiff_plain;h=189cd38b4188bfcb4c8cf67d8ae71741ffc2b906;ds=sidebyside don't use SSL_CTX_set_ecdh_auto with wolfSSL SSL_CTX_set_ecdh_auto() isn't support by wolfSSL (yet). Signed-off-by: Daniel Golle --- diff --git a/ustream-openssl.c b/ustream-openssl.c index eb03dab..91bc4e8 100644 --- a/ustream-openssl.c +++ b/ustream-openssl.c @@ -49,7 +49,7 @@ __ustream_ssl_context_new(bool server) return NULL; SSL_CTX_set_verify(c, SSL_VERIFY_NONE, NULL); -#ifndef OPENSSL_NO_ECDH +#if !defined(OPENSSL_NO_ECDH) && !defined(CYASSL_OPENSSL_H_) SSL_CTX_set_ecdh_auto(c, 1); #endif if (server)