diff options
author | Ingela Anderton Andin <[email protected]> | 2017-05-09 10:57:06 +0200 |
---|---|---|
committer | Ingela Anderton Andin <[email protected]> | 2017-05-09 10:57:06 +0200 |
commit | 0049bee925a014c2dfb49c8d98eac94165532070 (patch) | |
tree | 1059b33807b5cfffa9ff85a38194863220467afe /lib/ssl/src/tls_handshake.erl | |
parent | e1c70e41196e8118d9f24b8d9023cb0f876ee0df (diff) | |
parent | e9b0dbb4a95dbc8e328f08d6df6654dcbe13db09 (diff) | |
download | otp-0049bee925a014c2dfb49c8d98eac94165532070.tar.gz otp-0049bee925a014c2dfb49c8d98eac94165532070.tar.bz2 otp-0049bee925a014c2dfb49c8d98eac94165532070.zip |
Merge branch 'ingela/ssl/server-hostname-verify/OTP-14197'
* ingela/ssl/server-hostname-verify/OTP-14197:
ssl: Add hostname check of server certificate
Diffstat (limited to 'lib/ssl/src/tls_handshake.erl')
-rw-r--r-- | lib/ssl/src/tls_handshake.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ssl/src/tls_handshake.erl b/lib/ssl/src/tls_handshake.erl index 9da7b43be3..b54540393a 100644 --- a/lib/ssl/src/tls_handshake.erl +++ b/lib/ssl/src/tls_handshake.erl @@ -56,7 +56,7 @@ client_hello(Host, Port, ConnectionStates, Version = tls_record:highest_protocol_version(Versions), #{security_parameters := SecParams} = ssl_record:pending_connection_state(ConnectionStates, read), AvailableCipherSuites = ssl_handshake:available_suites(UserSuites, Version), - Extensions = ssl_handshake:client_hello_extensions(Host, Version, + Extensions = ssl_handshake:client_hello_extensions(Version, AvailableCipherSuites, SslOpts, ConnectionStates, Renegotiation), CipherSuites = |