aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTatsuya Kinoshita <tats@debian.org>2020-03-11 10:33:34 +0000
committerTatsuya Kinoshita <tats@debian.org>2020-03-11 10:33:34 +0000
commit91953baf07be4516df7464e7e806c4e280f62d54 (patch)
treefcc1bceac436156f058dee4945ca5db3ebea0ad3
parentUpdate ChangeLog (diff)
downloadw3m-91953baf07be4516df7464e7e806c4e280f62d54.tar.gz
w3m-91953baf07be4516df7464e7e806c4e280f62d54.zip
Extend ssl_forbid_method for TLSv1.2 and TLSv1.3
-rw-r--r--url.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/url.c b/url.c
index aab7b9d..a9e4108 100644
--- a/url.c
+++ b/url.c
@@ -344,8 +344,18 @@ openSSLHandle(int sock, char *hostname, char **p_cert)
option |= SSL_OP_NO_TLSv1;
if (strchr(ssl_forbid_method, '4'))
option |= SSL_OP_NO_TLSv1;
+#ifdef SSL_OP_NO_TLSv1_1
if (strchr(ssl_forbid_method, '5'))
option |= SSL_OP_NO_TLSv1_1;
+#endif
+#ifdef SSL_OP_NO_TLSv1_2
+ if (strchr(ssl_forbid_method, '6'))
+ option |= SSL_OP_NO_TLSv1_2;
+#endif
+#ifdef SSL_OP_NO_TLSv1_3
+ if (strchr(ssl_forbid_method, '7'))
+ option |= SSL_OP_NO_TLSv1_3;
+#endif
}
#ifdef SSL_OP_NO_COMPRESSION
option |= SSL_OP_NO_COMPRESSION;