diff options
author | Ingela Anderton Andin <[email protected]> | 2016-08-12 19:11:30 +0200 |
---|---|---|
committer | Ingela Anderton Andin <[email protected]> | 2016-09-05 14:37:26 +0200 |
commit | 630617405c8c96f76a752cde8e5db134b91df8fd (patch) | |
tree | 959a66b8b2de9bccc7c771acff39dc0cf6991f31 /lib/ssl/src/tls_connection.erl | |
parent | 6c8a0271f750af3629f52a15a20464065e1b6ec4 (diff) | |
download | otp-630617405c8c96f76a752cde8e5db134b91df8fd.tar.gz otp-630617405c8c96f76a752cde8e5db134b91df8fd.tar.bz2 otp-630617405c8c96f76a752cde8e5db134b91df8fd.zip |
dtls: Add protocol event handling
Diffstat (limited to 'lib/ssl/src/tls_connection.erl')
-rw-r--r-- | lib/ssl/src/tls_connection.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/ssl/src/tls_connection.erl b/lib/ssl/src/tls_connection.erl index 70563096b7..7e02021dae 100644 --- a/lib/ssl/src/tls_connection.erl +++ b/lib/ssl/src/tls_connection.erl @@ -597,7 +597,7 @@ next_event(connection = StateName, no_record, State0, Actions) -> {no_record, State} -> ssl_connection:hibernate_after(StateName, State, Actions); {#ssl_tls{} = Record, State} -> - {next_state, StateName, State, [{next_event, internal, {tls_record, Record}} | Actions]}; + {next_state, StateName, State, [{next_event, internal, {protocol_record, Record}} | Actions]}; {#alert{} = Alert, State} -> {next_state, StateName, State, [{next_event, internal, Alert} | Actions]} end; @@ -606,7 +606,7 @@ next_event(StateName, Record, State, Actions) -> no_record -> {next_state, StateName, State, Actions}; #ssl_tls{} = Record -> - {next_state, StateName, State, [{next_event, internal, {tls_record, Record}} | Actions]}; + {next_state, StateName, State, [{next_event, internal, {protocol_record, Record}} | Actions]}; #alert{} = Alert -> {next_state, StateName, State, [{next_event, internal, Alert} | Actions]} end. |