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/ssl_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/ssl_connection.erl')
-rw-r--r-- | lib/ssl/src/ssl_connection.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/ssl/src/ssl_connection.erl b/lib/ssl/src/ssl_connection.erl index 8ac9fd8270..3fe64ea6b0 100644 --- a/lib/ssl/src/ssl_connection.erl +++ b/lib/ssl/src/ssl_connection.erl @@ -820,8 +820,8 @@ handle_common_event(internal, {handshake, {Handshake, Raw}}, StateName, HsHist = ssl_handshake:update_handshake_history(Hs0, Raw, V2HComp), {next_state, StateName, State#state{tls_handshake_history = HsHist}, [{next_event, internal, Handshake}]}; -handle_common_event(internal, {tls_record, TLSRecord}, StateName, State, Connection) -> - Connection:handle_common_event(internal, TLSRecord, StateName, State); +handle_common_event(internal, {protocol_record, TLSorDTLSRecord}, StateName, State, Connection) -> + Connection:handle_common_event(internal, TLSorDTLSRecord, StateName, State); handle_common_event(timeout, hibernate, _, _, _) -> {keep_state_and_data, [hibernate]}; handle_common_event(internal, {application_data, Data}, StateName, State0, Connection) -> |