aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-quic.c
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2016-08-26 10:41:45 +0200
committerMichael Mann <mmann78@netscape.net>2016-08-26 13:39:10 +0000
commitdf28c8266ff9ebc404fd53408050c507a442ac04 (patch)
treebf1fddda9e105df27ba2adb85ac3ed7d442f1168 /epan/dissectors/packet-quic.c
parent09be46361bab677842cc598405cbc7a44b974f1f (diff)
QUIC: Fix some typo (copy/paste error) on GOAWAY/CONNECTION_CLOSE Frame
Issue reported by Lucas Perdue Change-Id: I9c4ede6ba2fb0303aab05f1d59835e5a8b386a3e Reviewed-on: https://code.wireshark.org/review/17340 Reviewed-by: Lucas Pardue <lucas.pardue@bbc.co.uk> Reviewed-by: Michael Mann <mmann78@netscape.net>
Diffstat (limited to 'epan/dissectors/packet-quic.c')
-rw-r--r--epan/dissectors/packet-quic.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/epan/dissectors/packet-quic.c b/epan/dissectors/packet-quic.c
index 4ecc70d4d8..57c69cd26f 100644
--- a/epan/dissectors/packet-quic.c
+++ b/epan/dissectors/packet-quic.c
@@ -2240,7 +2240,7 @@ proto_register_quic(void)
{ &hf_quic_frame_type_cc_error_code,
{ "Error code", "quic.frame_type.cc.error_code",
FT_UINT32, BASE_DEC|BASE_EXT_STRING, &error_code_vals_ext, 0x0,
- "Stream ID of the stream being terminated", HFILL }
+ "Indicates the reason for closing this connection", HFILL }
},
{ &hf_quic_frame_type_cc_reason_phrase_length,
{ "Reason phrase Length", "quic.frame_type.cc.reason_phrase.length",
@@ -2255,12 +2255,12 @@ proto_register_quic(void)
{ &hf_quic_frame_type_goaway_error_code,
{ "Error code", "quic.frame_type.goaway.error_code",
FT_UINT32, BASE_DEC|BASE_EXT_STRING, &error_code_vals_ext, 0x0,
- "Stream ID of the stream being terminated", HFILL }
+ "Indicates the reason for closing this connection", HFILL }
},
{ &hf_quic_frame_type_goaway_last_good_stream_id,
- { "Error code", "quic.frame_type.goaway.error_code",
- FT_UINT32, BASE_DEC|BASE_EXT_STRING, &error_code_vals_ext, 0x0,
- "Stream ID of the stream being terminated", HFILL }
+ { "Last Good Stream ID", "quic.frame_type.goaway.last_good_stream_id",
+ FT_UINT32, BASE_DEC, NULL, 0x0,
+ "last Stream ID which was accepted by the sender of the GOAWAY message", HFILL }
},
{ &hf_quic_frame_type_goaway_reason_phrase_length,
{ "Reason phrase Length", "quic.frame_type.goaway.reason_phrase.length",