aboutsummaryrefslogtreecommitdiffstats
path: root/lib/ssl/src/ssl_alert.erl
diff options
context:
space:
mode:
authorIngela Anderton Andin <[email protected]>2018-08-31 18:18:16 +0200
committerIngela Anderton Andin <[email protected]>2018-09-04 16:28:13 +0200
commitf4dd73f0363f3ccf894f17274d5b0d6cdb89fced (patch)
tree8896ec69bdb500003fd683f626a03d8deee400b0 /lib/ssl/src/ssl_alert.erl
parentd46735a1085e280989856b5c383fdd032d93a6b6 (diff)
downloadotp-f4dd73f0363f3ccf894f17274d5b0d6cdb89fced.tar.gz
otp-f4dd73f0363f3ccf894f17274d5b0d6cdb89fced.tar.bz2
otp-f4dd73f0363f3ccf894f17274d5b0d6cdb89fced.zip
ssl: Add new TLS-1.3 Alerts
Diffstat (limited to 'lib/ssl/src/ssl_alert.erl')
-rw-r--r--lib/ssl/src/ssl_alert.erl4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/ssl/src/ssl_alert.erl b/lib/ssl/src/ssl_alert.erl
index 34e9797f1f..ed8156e0be 100644
--- a/lib/ssl/src/ssl_alert.erl
+++ b/lib/ssl/src/ssl_alert.erl
@@ -163,6 +163,8 @@ description_txt(?USER_CANCELED) ->
"User Canceled";
description_txt(?NO_RENEGOTIATION) ->
"No Renegotiation";
+description_txt(?MISSING_EXTENSION) ->
+ "Missing extension";
description_txt(?UNSUPPORTED_EXTENSION) ->
"Unsupported Extension";
description_txt(?CERTIFICATE_UNOBTAINABLE) ->
@@ -177,6 +179,8 @@ description_txt(?UNKNOWN_PSK_IDENTITY) ->
"Unknown Psk Identity";
description_txt(?INAPPROPRIATE_FALLBACK) ->
"Inappropriate Fallback";
+description_txt(?CERTIFICATE_REQUIRED) ->
+ "Certificate required";
description_txt(?NO_APPLICATION_PROTOCOL) ->
"No application protocol";
description_txt(Enum) ->