diff options
author | Ingela Anderton Andin <[email protected]> | 2018-03-08 16:52:56 +0100 |
---|---|---|
committer | Ingela Anderton Andin <[email protected]> | 2018-03-09 09:53:53 +0100 |
commit | 748d502138a941ddf79accd8dffc398ce84a21a7 (patch) | |
tree | 0b649b7a7fc2b119218ae16718d75313eb5e92f6 /lib/ssl/src/dtls_connection.erl | |
parent | 88f654aa94e7a51681ad5774a0677bfa2fba77bd (diff) | |
download | otp-748d502138a941ddf79accd8dffc398ce84a21a7.tar.gz otp-748d502138a941ddf79accd8dffc398ce84a21a7.tar.bz2 otp-748d502138a941ddf79accd8dffc398ce84a21a7.zip |
ssl: Remove interoperability option v2_hello_compatible
Diffstat (limited to 'lib/ssl/src/dtls_connection.erl')
-rw-r--r-- | lib/ssl/src/dtls_connection.erl | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/ssl/src/dtls_connection.erl b/lib/ssl/src/dtls_connection.erl index fb12a729b1..7bc7fc3fc6 100644 --- a/lib/ssl/src/dtls_connection.erl +++ b/lib/ssl/src/dtls_connection.erl @@ -970,8 +970,7 @@ unprocessed_events(Events) -> update_handshake_history(#hello_verify_request{}, _, Hist) -> Hist; update_handshake_history(_, Handshake, Hist) -> - %% DTLS never needs option "v2_hello_compatible" to be true - ssl_handshake:update_handshake_history(Hist, iolist_to_binary(Handshake), false). + ssl_handshake:update_handshake_history(Hist, iolist_to_binary(Handshake)). prepare_flight(#state{flight_buffer = Flight, connection_states = ConnectionStates0, protocol_buffers = |