diff options
author | Stig Bjørlykke <stig@bjorlykke.org> | 2010-09-30 19:35:51 +0000 |
---|---|---|
committer | Stig Bjørlykke <stig@bjorlykke.org> | 2010-09-30 19:35:51 +0000 |
commit | f5a210b2e8d1da2125e926740912855806a61c72 (patch) | |
tree | 74d387e6b6e7b675bf3935818a03fe3b726d9380 /asn1/rtse | |
parent | 733183a17057dc3c1f2ac5f324a3a84311931a84 (diff) | |
download | wireshark-f5a210b2e8d1da2125e926740912855806a61c72.tar.gz wireshark-f5a210b2e8d1da2125e926740912855806a61c72.tar.bz2 wireshark-f5a210b2e8d1da2125e926740912855806a61c72.zip |
Cleanup reassembly hf entries.
svn path=/trunk/; revision=34291
Diffstat (limited to 'asn1/rtse')
-rw-r--r-- | asn1/rtse/packet-rtse-template.c | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/asn1/rtse/packet-rtse-template.c b/asn1/rtse/packet-rtse-template.c index e85de47030..b88e142fe0 100644 --- a/asn1/rtse/packet-rtse-template.c +++ b/asn1/rtse/packet-rtse-template.c @@ -319,28 +319,27 @@ void proto_register_rtse(void) { NULL, 0x00, NULL, HFILL } }, { &hf_rtse_fragments, { "RTSE fragments", "rtse.fragments", FT_NONE, BASE_NONE, - NULL, 0x00, "Message fragments", HFILL } }, + NULL, 0x00, NULL, HFILL } }, { &hf_rtse_fragment, { "RTSE fragment", "rtse.fragment", FT_FRAMENUM, BASE_NONE, - NULL, 0x00, "Message fragment", HFILL } }, + NULL, 0x00, NULL, HFILL } }, { &hf_rtse_fragment_overlap, { "RTSE fragment overlap", "rtse.fragment.overlap", FT_BOOLEAN, - BASE_NONE, NULL, 0x0, "Message fragment overlap", HFILL } }, + BASE_NONE, NULL, 0x0, NULL, HFILL } }, { &hf_rtse_fragment_overlap_conflicts, { "RTSE fragment overlapping with conflicting data", - "rtse.fragment.overlap.conflicts", FT_BOOLEAN, BASE_NONE, NULL, - 0x0, "Message fragment overlapping with conflicting data", HFILL } }, + "rtse.fragment.overlap.conflicts", FT_BOOLEAN, BASE_NONE, + NULL, 0x0, NULL, HFILL } }, { &hf_rtse_fragment_multiple_tails, { "RTSE has multiple tail fragments", "rtse.fragment.multiple_tails", FT_BOOLEAN, BASE_NONE, - NULL, 0x0, "Message has multiple tail fragments", HFILL } }, + NULL, 0x0, NULL, HFILL } }, { &hf_rtse_fragment_too_long_fragment, { "RTSE fragment too long", "rtse.fragment.too_long_fragment", - FT_BOOLEAN, BASE_NONE, NULL, 0x0, "Message fragment too long", - HFILL } }, + FT_BOOLEAN, BASE_NONE, NULL, 0x0, NULL, HFILL } }, { &hf_rtse_fragment_error, { "RTSE defragmentation error", "rtse.fragment.error", FT_FRAMENUM, - BASE_NONE, NULL, 0x00, "Message defragmentation error", HFILL } }, + BASE_NONE, NULL, 0x00, NULL, HFILL } }, { &hf_rtse_reassembled_in, { "Reassembled RTSE in frame", "rtse.reassembled.in", FT_FRAMENUM, BASE_NONE, NULL, 0x00, "This RTSE packet is reassembled in this frame", HFILL } }, |