diff options
author | Tatsuya Kinoshita <tats@debian.org> | 2021-02-10 12:55:34 +0000 |
---|---|---|
committer | Tatsuya Kinoshita <tats@debian.org> | 2021-02-10 12:55:34 +0000 |
commit | 1ec090b0d3b828d142904e1031cde9b44c454585 (patch) | |
tree | e18138ada3facb27b908295686ca501198076444 /fm.h | |
parent | Mention ssl_* options as a workaround for SSL error (diff) | |
download | w3m-1ec090b0d3b828d142904e1031cde9b44c454585.tar.gz w3m-1ec090b0d3b828d142904e1031cde9b44c454585.zip |
Disable TLSv1.0 and TLSv1.1 by default
Diffstat (limited to 'fm.h')
-rw-r--r-- | fm.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1190,7 +1190,7 @@ global int ssl_path_modified init(FALSE); #endif /* defined(USE_SSL) && * defined(USE_SSL_VERIFY) */ #ifdef USE_SSL -global char *ssl_forbid_method init("2, 3"); +global char *ssl_forbid_method init("2, 3, t, 5"); #ifdef SSL_CTX_set_min_proto_version global char *ssl_min_version init(NULL); #endif |