aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-quic.c
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2017-08-16 13:26:15 +0200
committerAnders Broman <a.broman58@gmail.com>2017-09-04 19:55:22 +0000
commit83f727d73dfda95623b9094cb817cf8564cbe54e (patch)
treec65b66e4561f9307997c0b5e3f24cdd3e71b3075 /epan/dissectors/packet-quic.c
parent8bd04c8be3304731dc319a35d1e6974193bcd3c1 (diff)
QUIC(IETF): Remove GOAWAY
Ping-Bug: 13881 Change-Id: Ieacfb6a9f63ec17f4377652a396e7bcfd54c101d Reviewed-on: https://code.wireshark.org/review/23257 Reviewed-by: Anders Broman <a.broman58@gmail.com>
Diffstat (limited to 'epan/dissectors/packet-quic.c')
-rw-r--r--epan/dissectors/packet-quic.c28
1 files changed, 0 insertions, 28 deletions
diff --git a/epan/dissectors/packet-quic.c b/epan/dissectors/packet-quic.c
index 04929b7c5d..88624c3153 100644
--- a/epan/dissectors/packet-quic.c
+++ b/epan/dissectors/packet-quic.c
@@ -85,8 +85,6 @@ static int hf_quic_frame_type_rsts_final_offset = -1;
static int hf_quic_frame_type_cc_error_code = -1;
static int hf_quic_frame_type_cc_reason_phrase_length = -1;
static int hf_quic_frame_type_cc_reason_phrase = -1;
-static int hf_quic_frame_type_ga_largest_client_stream_id = -1;
-static int hf_quic_frame_type_ga_largest_server_stream_id = -1;
static int hf_quic_frame_type_md_maximum_data = -1;
static int hf_quic_frame_type_msd_stream_id = -1;
static int hf_quic_frame_type_msd_maximum_stream_data = -1;
@@ -145,7 +143,6 @@ static const value_string quic_long_packet_type_vals[] = {
#define FT_PADDING 0x00
#define FT_RST_STREAM 0x01
#define FT_CONNECTION_CLOSE 0x02
-#define FT_GOAWAY 0x03
#define FT_MAX_DATA 0x04
#define FT_MAX_STREAM_DATA 0x05
#define FT_MAX_STREAM_ID 0x06
@@ -163,7 +160,6 @@ static const range_string quic_frame_type_vals[] = {
{ 0x00, 0x00, "PADDING" },
{ 0x01, 0x01, "RST_STREAM" },
{ 0x02, 0x02, "CONNECTION_CLOSE" },
- { 0x03, 0x03, "GOAWAY" },
{ 0x04, 0x04, "MAX_DATA" },
{ 0x05, 0x05, "MAX_STREAM_DATA" },
{ 0x06, 0x06, "MAX_STREAM_ID" },
@@ -545,19 +541,6 @@ dissect_quic_frame_type(tvbuff_t *tvb, packet_info *pinfo _U_, proto_tree *quic_
}
break;
- case FT_GOAWAY:{
-
- proto_tree_add_item(ft_tree, hf_quic_frame_type_ga_largest_client_stream_id, tvb, offset, 4, ENC_BIG_ENDIAN);
- offset += 4;
- proto_tree_add_item(ft_tree, hf_quic_frame_type_ga_largest_server_stream_id, tvb, offset, 2, ENC_BIG_ENDIAN);
- offset += 4;
-
- proto_item_set_len(ti_ft, 1 + 4 + 4);
-
- col_prepend_fstr(pinfo->cinfo, COL_INFO, "GOAWAY");
-
- }
- break;
case FT_MAX_DATA:{
proto_tree_add_item(ft_tree, hf_quic_frame_type_md_maximum_data, tvb, offset, 8, ENC_BIG_ENDIAN);
@@ -1000,17 +983,6 @@ proto_register_quic(void)
FT_STRING, BASE_NONE, NULL, 0x0,
"A human-readable explanation for why the connection was closed", HFILL }
},
- /* GOAWAY */
- { &hf_quic_frame_type_ga_largest_client_stream_id,
- { "Largest Client Stream ID", "quic.frame_type.goway.largest_client_stream_id",
- FT_UINT32, BASE_DEC, NULL, 0x0,
- "The highest-numbered, client-initiated stream on which the endpoint sending the GOAWAY frame either sent data, or received and delivered data", HFILL }
- },
- { &hf_quic_frame_type_ga_largest_server_stream_id,
- { "Largest Server Stream ID", "quic.frame_type.goway.largest_server_stream_id",
- FT_UINT32, BASE_DEC, NULL, 0x0,
- "The highest-numbered, server-initiated stream on which the endpoint sending the GOAWAY frame either sent data, or received and delivered data", HFILL }
- },
/* MAX_DATA */
{ &hf_quic_frame_type_md_maximum_data,
{ "Maximum Data", "quic.frame_type.md.maximum_data",