aboutsummaryrefslogtreecommitdiffstats
path: root/epan
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2018-03-09 15:19:29 +0100
committerPeter Wu <peter@lekensteyn.nl>2018-03-09 14:58:17 +0000
commit66eed04afe08bf9120cf22d1885191c281086325 (patch)
tree343ad6fa5f41e49025b980903f9e2eb43a506eb5 /epan
parentcc795d4ddfaca382bcd0e6b4862a432eddd06f54 (diff)
QUIC: Remove last long packet type about old draft (< 08)
Bug: 13881 Change-Id: I9fae21b62b7394a8ae52c5fa551aea2da17fbff5 Reviewed-on: https://code.wireshark.org/review/26389 Reviewed-by: Peter Wu <peter@lekensteyn.nl>
Diffstat (limited to 'epan')
-rw-r--r--epan/dissectors/packet-quic.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/epan/dissectors/packet-quic.c b/epan/dissectors/packet-quic.c
index 64853b219f..0eb3f4194a 100644
--- a/epan/dissectors/packet-quic.c
+++ b/epan/dissectors/packet-quic.c
@@ -149,12 +149,6 @@ static const value_string quic_short_packet_type_vals[] = {
#define QUIC_LPT_HANDSHAKE 0x7D
static const value_string quic_long_packet_type_vals[] = {
- { 0x01, "Version Negotiation" }, /* Removed in draft-08 by a check of Version (=0x00000000)*/
- { 0x02, "Client Initial" }, /* Replaced in draft-08 by 0x7F (Initial) */
- { 0x03, "Server Stateless Retry" }, /* Replaced in draft-08 by 0x7E (Retry) */
- { 0x04, "Server Cleartext" }, /* Replaced in draft-08 by 0x7D (Handshake) */
- { 0x05, "Client Cleartext" }, /* Replaced in draft-08 by 0x7D (Handshake) */
- { 0x06, "0-RTT Protected" }, /* Replaced in draft-08 by 0x7C (0-RTT Protected) */
{ QUIC_LPT_INITIAL, "Initial" },
{ QUIC_LPT_RETRY, "Retry" },
{ QUIC_LPT_HANDSHAKE, "Handshake" },