diff options
author | Ingela Anderton Andin <[email protected]> | 2016-05-03 12:07:51 +0200 |
---|---|---|
committer | Ingela Anderton Andin <[email protected]> | 2016-06-03 12:14:43 +0200 |
commit | 33afe108de9cf24be47b9ebd740a8f5e19daca79 (patch) | |
tree | 000f6b30068d5e696197c53b8cf4053602daab29 /lib/ssl/src/ssl_internal.hrl | |
parent | f7e370a7513c93ae74eb7861d094589990958aa7 (diff) | |
download | otp-33afe108de9cf24be47b9ebd740a8f5e19daca79.tar.gz otp-33afe108de9cf24be47b9ebd740a8f5e19daca79.tar.bz2 otp-33afe108de9cf24be47b9ebd740a8f5e19daca79.zip |
ssl: Add option to phase out support for sslv2 client hello
ssl servers can recognize sslv2 client hellos to interop with clients
that support higher version of SSL/TLS but also offers sslv2
Conflicts:
lib/ssl/src/tls_connection.erl
Diffstat (limited to 'lib/ssl/src/ssl_internal.hrl')
-rw-r--r-- | lib/ssl/src/ssl_internal.hrl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/ssl/src/ssl_internal.hrl b/lib/ssl/src/ssl_internal.hrl index dddcbdeeda..c19c1787ff 100644 --- a/lib/ssl/src/ssl_internal.hrl +++ b/lib/ssl/src/ssl_internal.hrl @@ -139,7 +139,8 @@ fallback = false :: boolean(), crl_check :: boolean() | peer | best_effort, crl_cache, - signature_algs + signature_algs, + v2_hello_compatible :: boolean() }). -record(socket_options, |