QUIC: Add column info for ACK_FREQUENCY and TIME_STAMP frame type

Change-Id: Id30c4d88240c421c676ec3f1c729f5df3f865912
Ping-Bug: 13811
Reviewed-on: https://code.wireshark.org/review/37822
Petri-Dish: Alexis La Goutte <alexis.lagoutte@gmail.com>
Tested-by: Petri Dish Buildbot
Reviewed-by: Anders Broman <a.broman58@gmail.com>
This commit is contained in:
Alexis La Goutte 2020-07-11 05:33:29 +00:00 committed by Anders Broman
parent 29c9425d22
commit 415f72a146
1 changed files with 2 additions and 0 deletions

View File

@ -1377,6 +1377,7 @@ dissect_quic_frame_type(tvbuff_t *tvb, packet_info *pinfo, proto_tree *quic_tree
case FT_ACK_FREQUENCY:{
gint32 length;
col_append_fstr(pinfo->cinfo, COL_INFO, ", ACK_FREQ");
proto_tree_add_item_ret_varint(ft_tree, hf_quic_af_sequence_number, tvb, offset, -1, ENC_VARINT_QUIC, NULL, &length);
offset += (guint32)length;
@ -1390,6 +1391,7 @@ dissect_quic_frame_type(tvbuff_t *tvb, packet_info *pinfo, proto_tree *quic_tree
case FT_TIME_STAMP:{
gint32 length;
col_append_fstr(pinfo->cinfo, COL_INFO, ", TS");
proto_tree_add_item_ret_varint(ft_tree, hf_quic_ts, tvb, offset, -1, ENC_VARINT_QUIC, NULL, &length);
offset += (guint32)length;