aboutsummaryrefslogtreecommitdiffstats
path: root/lib/ssl/src/dtls_connection.erl
diff options
context:
space:
mode:
authorHans Nilsson <[email protected]>2017-06-14 15:30:16 +0200
committerHans Nilsson <[email protected]>2017-06-14 15:30:16 +0200
commit8e1cd77c97835c7ac8ecc1adcc13a366fb3904a3 (patch)
treed497bcea50cd029f519b8894db859a5a5a5030ad /lib/ssl/src/dtls_connection.erl
parent2e4f0aa732b4dcc0a511234b4bdf11d61ca6b5fd (diff)
parent478205d32667dd7575d70d412d96c8c695168c46 (diff)
downloadotp-8e1cd77c97835c7ac8ecc1adcc13a366fb3904a3.tar.gz
otp-8e1cd77c97835c7ac8ecc1adcc13a366fb3904a3.tar.bz2
otp-8e1cd77c97835c7ac8ecc1adcc13a366fb3904a3.zip
Merge remote-tracking branch 'ingela/ingela/dtls/client-hello-verify/ERL-434'
Diffstat (limited to 'lib/ssl/src/dtls_connection.erl')
-rw-r--r--lib/ssl/src/dtls_connection.erl8
1 files changed, 7 insertions, 1 deletions
diff --git a/lib/ssl/src/dtls_connection.erl b/lib/ssl/src/dtls_connection.erl
index 98ea8092fa..e8cfbbe2e3 100644
--- a/lib/ssl/src/dtls_connection.erl
+++ b/lib/ssl/src/dtls_connection.erl
@@ -311,7 +311,13 @@ hello(internal, #client_hello{cookie = <<>>,
protocol_specific = #{current_cookie_secret := Secret}} = State0) ->
{ok, {IP, Port}} = dtls_socket:peername(Transport, Socket),
Cookie = dtls_handshake:cookie(Secret, IP, Port, Hello),
- VerifyRequest = dtls_handshake:hello_verify_request(Cookie, Version),
+ %% FROM RFC 6347 regarding HelloVerifyRequest message:
+ %% The server_version field has the same syntax as in TLS. However, in
+ %% order to avoid the requirement to do version negotiation in the
+ %% initial handshake, DTLS 1.2 server implementations SHOULD use DTLS
+ %% version 1.0 regardless of the version of TLS that is expected to be
+ %% negotiated.
+ VerifyRequest = dtls_handshake:hello_verify_request(Cookie, ?HELLO_VERIFY_REQUEST_VERSION),
State1 = prepare_flight(State0#state{negotiated_version = Version}),
{State2, Actions} = send_handshake(VerifyRequest, State1),
{Record, State} = next_record(State2),