summaryrefslogtreecommitdiff
path: root/epan/dissectors/packet-ssl-utils.c
diff options
context:
space:
mode:
authorPeter Wu <peter@lekensteyn.nl>2017-03-17 13:39:13 +0100
committerMichael Mann <mmann78@netscape.net>2017-03-18 23:23:15 +0000
commita5bb470a553cbd4dc90a874760ec17e4bd914f7d (patch)
tree18eb53e4be2b3795b34e8926b8097a0c4b656682 /epan/dissectors/packet-ssl-utils.c
parenta16771f34b60cc9862fae885d681d2eeb4530d4d (diff)
downloadwireshark-a5bb470a553cbd4dc90a874760ec17e4bd914f7d.tar.gz
TLS13: update end_of_early_data to draft -19
It changed from an alert to a handshake message. Change-Id: Ic24776e612a291153290543ba1ec8680d9d74264 Ping-Bug: 12779 Reviewed-on: https://code.wireshark.org/review/20586 Reviewed-by: Alexis La Goutte <alexis.lagoutte@gmail.com> Petri-Dish: Alexis La Goutte <alexis.lagoutte@gmail.com> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Michael Mann <mmann78@netscape.net>
Diffstat (limited to 'epan/dissectors/packet-ssl-utils.c')
-rw-r--r--epan/dissectors/packet-ssl-utils.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/epan/dissectors/packet-ssl-utils.c b/epan/dissectors/packet-ssl-utils.c
index 55fc59a77f..ebf5e5ba6a 100644
--- a/epan/dissectors/packet-ssl-utils.c
+++ b/epan/dissectors/packet-ssl-utils.c
@@ -558,6 +558,7 @@ const value_string ssl_31_handshake_type[] = {
{ SSL_HND_SERVER_HELLO, "Server Hello" },
{ SSL_HND_HELLO_VERIFY_REQUEST, "Hello Verify Request"},
{ SSL_HND_NEWSESSION_TICKET, "New Session Ticket" },
+ { SSL_HND_END_OF_EARLY_DATA, "End of Early Data" },
{ SSL_HND_HELLO_RETRY_REQUEST, "Hello Retry Request" },
{ SSL_HND_ENCRYPTED_EXTENSIONS, "Encrypted Extensions" },
{ SSL_HND_CERTIFICATE, "Certificate" },
@@ -6823,6 +6824,7 @@ ssl_is_valid_handshake_type(guint8 hs_type, gboolean is_dtls)
case SSL_HND_CLIENT_HELLO:
case SSL_HND_SERVER_HELLO:
case SSL_HND_NEWSESSION_TICKET:
+ case SSL_HND_END_OF_EARLY_DATA:
case SSL_HND_HELLO_RETRY_REQUEST:
case SSL_HND_ENCRYPTED_EXTENSIONS:
case SSL_HND_CERTIFICATE: