summaryrefslogtreecommitdiff
path: root/epan/dissectors/packet-ssl.c
diff options
context:
space:
mode:
authorPeter Wu <peter@lekensteyn.nl>2017-02-08 02:04:18 +0100
committerPeter Wu <peter@lekensteyn.nl>2017-02-11 13:22:43 +0000
commiteb1a63f3bcd30e8e844f2a72ac9c3e7a82871638 (patch)
tree3df30864bcd8a421e4b04afe41906560b0f69614 /epan/dissectors/packet-ssl.c
parent746bbe7abf4bad74b78db0282d8962eb891eb502 (diff)
downloadwireshark-eb1a63f3bcd30e8e844f2a72ac9c3e7a82871638.tar.gz
TLS13: add Key Update dissection
Actual decryption support will be added later. Ping-Bug: 12779 Change-Id: I3ff1f243fd0bd1467e84d8a6a5433c1fe71bbebf Reviewed-on: https://code.wireshark.org/review/20012 Petri-Dish: Peter Wu <peter@lekensteyn.nl> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Peter Wu <peter@lekensteyn.nl>
Diffstat (limited to 'epan/dissectors/packet-ssl.c')
-rw-r--r--epan/dissectors/packet-ssl.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/epan/dissectors/packet-ssl.c b/epan/dissectors/packet-ssl.c
index 12a1cacacd..2157ae1492 100644
--- a/epan/dissectors/packet-ssl.c
+++ b/epan/dissectors/packet-ssl.c
@@ -2188,6 +2188,10 @@ dissect_ssl3_handshake(tvbuff_t *tvb, packet_info *pinfo,
/* TODO: dissect this? */
break;
+ case SSL_HND_KEY_UPDATE:
+ tls13_dissect_hnd_key_update(&dissect_ssl3_hf, tvb, tree, offset);
+ break;
+
case SSL_HND_ENCRYPTED_EXTS:
dissect_ssl3_hnd_encrypted_exts(tvb, ssl_hand_tree, offset);
break;