1 Disable SSLv2 and SSLv3 in links to "mitigate POODLE vulnerability".
3 This change will be passed upstream.
5 --- a/https.c.orig 2017-03-01 16:33:15.504062101 +0000
6 +++ b/https.c 2017-03-01 16:33:47.467654008 +0000
8 #ifndef SSL_OP_NO_COMPRESSION
9 #define SSL_OP_NO_COMPRESSION 0
11 - SSL_CTX_set_options(ctx, SSL_OP_ALL | SSL_OP_NO_COMPRESSION);
12 + SSL_CTX_set_options(ctx, SSL_OP_NO_SSLv2 | SSL_OP_NO_SSLv3 | SSL_OP_NO_COMPRESSION);
13 #ifdef SSL_MODE_ENABLE_PARTIAL_WRITE
14 SSL_CTX_set_mode(ctx, SSL_MODE_ENABLE_PARTIAL_WRITE);