aboutsummaryrefslogtreecommitdiffstats
path: root/lib/ssl/src/ssl_alert.hrl
diff options
context:
space:
mode:
authorIngela Anderton Andin <[email protected]>2017-08-24 14:35:07 +0200
committerIngela Anderton Andin <[email protected]>2017-08-24 14:35:07 +0200
commit8539cf444bd1e79360ee2b68d2796a604b6723d1 (patch)
tree46c6ec6cae6b763f2a39c2779e56abc70b450bf2 /lib/ssl/src/ssl_alert.hrl
parented70ed1cbcfb01a8fee4ceac83c47afd78777387 (diff)
parent6bd79e8f543da4777ba872a0edeaae8a9a90d5a8 (diff)
downloadotp-8539cf444bd1e79360ee2b68d2796a604b6723d1.tar.gz
otp-8539cf444bd1e79360ee2b68d2796a604b6723d1.tar.bz2
otp-8539cf444bd1e79360ee2b68d2796a604b6723d1.zip
Merge branch 'ingela/ssl/dtls-alert-handling/OTP-14078' into maint
* ingela/ssl/dtls-alert-handling/OTP-14078: dtls: Customize alert handling for DTLS over UDP
Diffstat (limited to 'lib/ssl/src/ssl_alert.hrl')
-rw-r--r--lib/ssl/src/ssl_alert.hrl4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/ssl/src/ssl_alert.hrl b/lib/ssl/src/ssl_alert.hrl
index 1aabb6c55a..35670edea5 100644
--- a/lib/ssl/src/ssl_alert.hrl
+++ b/lib/ssl/src/ssl_alert.hrl
@@ -40,7 +40,7 @@
%% close_notify(0),
%% unexpected_message(10),
%% bad_record_mac(20),
-%% decryption_failed(21),
+%% decryption_failed_reserved(21),
%% record_overflow(22),
%% decompression_failure(30),
%% handshake_failure(40),
@@ -78,7 +78,7 @@
-define(CLOSE_NOTIFY, 0).
-define(UNEXPECTED_MESSAGE, 10).
-define(BAD_RECORD_MAC, 20).
--define(DECRYPTION_FAILED, 21).
+-define(DECRYPTION_FAILED_RESERVED, 21).
-define(RECORD_OVERFLOW, 22).
-define(DECOMPRESSION_FAILURE, 30).
-define(HANDSHAKE_FAILURE, 40).