aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2016-11-02 13:28:29 +0100
committerMichael Mann <mmann78@netscape.net>2016-11-02 19:34:33 +0000
commitafd8163813b081ee69679d60949925f6cc646923 (patch)
treeb52c96dbcd06d2f626c4e5c8cd1b21194b9f7df0
parent54ee7d6006b854632e0f69c1a71b15c16703572e (diff)
TLS(1.3): Add new Alert
Change-Id: Ice365bf3ca2198b3d81994a5670ac50add3e53dc Reviewed-on: https://code.wireshark.org/review/18620 Reviewed-by: Peter Wu <peter@lekensteyn.nl> Petri-Dish: Peter Wu <peter@lekensteyn.nl> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Michael Mann <mmann78@netscape.net>
-rw-r--r--epan/dissectors/packet-ssl-utils.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/epan/dissectors/packet-ssl-utils.c b/epan/dissectors/packet-ssl-utils.c
index b49f606bbc..614b33bb5d 100644
--- a/epan/dissectors/packet-ssl-utils.c
+++ b/epan/dissectors/packet-ssl-utils.c
@@ -505,6 +505,7 @@ const value_string ssl_31_alert_level[] = {
const value_string ssl_31_alert_description[] = {
{ 0, "Close Notify" },
+ { 1, "End of Early Data" },
{ 10, "Unexpected Message" },
{ 20, "Bad Record MAC" },
{ 21, "Decryption Failed" },
@@ -529,12 +530,14 @@ const value_string ssl_31_alert_description[] = {
{ 86, "Inappropriate Fallback" },
{ 90, "User Canceled" },
{ 100, "No Renegotiation" },
+ { 109, "Missing Extension" },
{ 110, "Unsupported Extension" },
{ 111, "Certificate Unobtainable" },
{ 112, "Unrecognized Name" },
{ 113, "Bad Certificate Status Response" },
{ 114, "Bad Certificate Hash Value" },
{ 115, "Unknown PSK Identity" },
+ { 116, "Certificate Required" },
{ 120, "No application Protocol" },
{ 0x00, NULL }
};