diff options
author | Phil Pennock <pdp@exim.org> | 2013-06-16 21:32:11 -0400 |
---|---|---|
committer | Phil Pennock <pdp@exim.org> | 2013-06-16 21:32:11 -0400 |
commit | e2fbf4a211bdcff441c50f58f3c1f1fb17f56d61 (patch) | |
tree | 75ecc5d38c29ec301f1c32282f87b3800337c9b3 /src | |
parent | d13cdd3049b0191bbb275f9a6cf11dc0917a1f0c (diff) |
Support safari_ecdhe_ecdsa_bug for openssl_options
Diffstat (limited to 'src')
-rw-r--r-- | src/src/tls-openssl.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/src/tls-openssl.c b/src/src/tls-openssl.c index 6f2646f03..b273fff75 100644 --- a/src/src/tls-openssl.c +++ b/src/src/tls-openssl.c @@ -2061,7 +2061,9 @@ all options unless explicitly for DTLS, let the administrator choose which to apply. This list is current as of: - ==> 1.0.1b <== */ + ==> 1.0.1b <== +Plus SSL_OP_SAFARI_ECDHE_ECDSA_BUG from 2013-June patch/discussion on openssl-dev +*/ static struct exim_openssl_option exim_openssl_options[] = { /* KEEP SORTED ALPHABETICALLY! */ #ifdef SSL_OP_ALL @@ -2126,6 +2128,9 @@ static struct exim_openssl_option exim_openssl_options[] = { #ifdef SSL_OP_NO_TLSv1_2 { US"no_tlsv1_2", SSL_OP_NO_TLSv1_2 }, #endif +#ifdef SSL_OP_SAFARI_ECDHE_ECDSA_BUG + { US"safari_ecdhe_ecdsa_bug", SSL_OP_SAFARI_ECDHE_ECDSA_BUG }, +#endif #ifdef SSL_OP_SINGLE_DH_USE { US"single_dh_use", SSL_OP_SINGLE_DH_USE }, #endif |