aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-quic.c
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2016-06-02 07:46:33 +0200
committerJaap Keuter <jaap.keuter@xs4all.nl>2016-06-02 08:35:01 +0000
commit4d11b1df2861220fd16b8619cd94df3c7601666f (patch)
tree3e4a4f0e81a0291f03b932eded987cac9e87262d /epan/dissectors/packet-quic.c
parentd1ae5bc961ef6317b5e2f891e3878102208dc38b (diff)
QUIC: Tag RSEQ and RNON use little endian
Change-Id: Iacd6ebf9d6b289ccfe2cae7d2ea90d29b04e5e4d Reviewed-on: https://code.wireshark.org/review/15697 Reviewed-by: Jaap Keuter <jaap.keuter@xs4all.nl>
Diffstat (limited to 'epan/dissectors/packet-quic.c')
-rw-r--r--epan/dissectors/packet-quic.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-quic.c b/epan/dissectors/packet-quic.c
index 98383c4b07..95a4f80e16 100644
--- a/epan/dissectors/packet-quic.c
+++ b/epan/dissectors/packet-quic.c
@@ -1395,12 +1395,12 @@ dissect_quic_tag(tvbuff_t *tvb, packet_info *pinfo, proto_tree *quic_tree, guint
tag_len -= 8;
break;
case TAG_RNON: /* Public Reset Tag */
- proto_tree_add_item(tag_tree, hf_quic_tag_rnon, tvb, tag_offset_start + tag_offset, 8, ENC_NA);
+ proto_tree_add_item(tag_tree, hf_quic_tag_rnon, tvb, tag_offset_start + tag_offset, 8, ENC_LITTLE_ENDIAN);
tag_offset += 8;
tag_len -= 8;
break;
case TAG_RSEQ: /* Public Reset Tag */
- proto_tree_add_item(tag_tree, hf_quic_tag_rseq, tvb, tag_offset_start + tag_offset, 8, ENC_NA);
+ proto_tree_add_item(tag_tree, hf_quic_tag_rseq, tvb, tag_offset_start + tag_offset, 8, ENC_LITTLE_ENDIAN);
tag_offset += 8;
tag_len -= 8;
break;