aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-t38.c
diff options
context:
space:
mode:
authorStig Bjørlykke <stig@bjorlykke.org>2008-04-20 13:24:58 +0000
committerStig Bjørlykke <stig@bjorlykke.org>2008-04-20 13:24:58 +0000
commit131df6c15749c39f4c3058ed99d7c965319ee4c7 (patch)
tree666edd7ad2767f6dd1c41e8d251ec4d30cc52127 /epan/dissectors/packet-t38.c
parentdbf503bb343535534a71677803d50cf414b46ee0 (diff)
Changed "data" -> "t38" abbrev for reassembly entries.
svn path=/trunk/; revision=25125
Diffstat (limited to 'epan/dissectors/packet-t38.c')
-rw-r--r--epan/dissectors/packet-t38.c64
1 files changed, 32 insertions, 32 deletions
diff --git a/epan/dissectors/packet-t38.c b/epan/dissectors/packet-t38.c
index b864a2310c..f99416829c 100644
--- a/epan/dissectors/packet-t38.c
+++ b/epan/dissectors/packet-t38.c
@@ -167,14 +167,14 @@ static int hf_t38_setup_frame = -1;
static int hf_t38_setup_method = -1;
/* T38 Data reassemble fields */
-static int hf_data_fragments = -1;
-static int hf_data_fragment = -1;
-static int hf_data_fragment_overlap = -1;
-static int hf_data_fragment_overlap_conflicts = -1;
-static int hf_data_fragment_multiple_tails = -1;
-static int hf_data_fragment_too_long_fragment = -1;
-static int hf_data_fragment_error = -1;
-static int hf_data_reassembled_in = -1;
+static int hf_t38_fragments = -1;
+static int hf_t38_fragment = -1;
+static int hf_t38_fragment_overlap = -1;
+static int hf_t38_fragment_overlap_conflicts = -1;
+static int hf_t38_fragment_multiple_tails = -1;
+static int hf_t38_fragment_too_long_fragment = -1;
+static int hf_t38_fragment_error = -1;
+static int hf_t38_reassembled_in = -1;
static gint ett_t38 = -1;
@@ -209,15 +209,15 @@ static const fragment_items data_frag_items = {
&ett_data_fragment,
&ett_data_fragments,
/* Fragment fields */
- &hf_data_fragments,
- &hf_data_fragment,
- &hf_data_fragment_overlap,
- &hf_data_fragment_overlap_conflicts,
- &hf_data_fragment_multiple_tails,
- &hf_data_fragment_too_long_fragment,
- &hf_data_fragment_error,
+ &hf_t38_fragments,
+ &hf_t38_fragment,
+ &hf_t38_fragment_overlap,
+ &hf_t38_fragment_overlap_conflicts,
+ &hf_t38_fragment_multiple_tails,
+ &hf_t38_fragment_too_long_fragment,
+ &hf_t38_fragment_error,
/* Reassembled in field */
- &hf_data_reassembled_in,
+ &hf_t38_reassembled_in,
/* Tag */
"Data fragments"
};
@@ -1358,31 +1358,31 @@ proto_register_t38(void)
{ &hf_t38_setup_method,
{ "Stream Method", "t38.setup-method", FT_STRING, BASE_NONE,
NULL, 0x0, "Method used to set up this stream", HFILL }},
- {&hf_data_fragments,
- {"Message fragments", "data.fragments",
+ {&hf_t38_fragments,
+ {"Message fragments", "t38.fragments",
FT_NONE, BASE_NONE, NULL, 0x00, NULL, HFILL } },
- {&hf_data_fragment,
- {"Message fragment", "data.fragment",
+ {&hf_t38_fragment,
+ {"Message fragment", "t38.fragment",
FT_FRAMENUM, BASE_NONE, NULL, 0x00, NULL, HFILL } },
- {&hf_data_fragment_overlap,
- {"Message fragment overlap", "data.fragment.overlap",
+ {&hf_t38_fragment_overlap,
+ {"Message fragment overlap", "t38.fragment.overlap",
FT_BOOLEAN, BASE_NONE, NULL, 0x00, NULL, HFILL } },
- {&hf_data_fragment_overlap_conflicts,
+ {&hf_t38_fragment_overlap_conflicts,
{"Message fragment overlapping with conflicting data",
- "data.fragment.overlap.conflicts",
+ "t38.fragment.overlap.conflicts",
FT_BOOLEAN, BASE_NONE, NULL, 0x00, NULL, HFILL } },
- {&hf_data_fragment_multiple_tails,
+ {&hf_t38_fragment_multiple_tails,
{"Message has multiple tail fragments",
- "data.fragment.multiple_tails",
+ "t38.fragment.multiple_tails",
FT_BOOLEAN, BASE_NONE, NULL, 0x00, NULL, HFILL } },
- {&hf_data_fragment_too_long_fragment,
- {"Message fragment too long", "data.fragment.too_long_fragment",
+ {&hf_t38_fragment_too_long_fragment,
+ {"Message fragment too long", "t38.fragment.too_long_fragment",
FT_BOOLEAN, BASE_NONE, NULL, 0x00, NULL, HFILL } },
- {&hf_data_fragment_error,
- {"Message defragmentation error", "data.fragment.error",
+ {&hf_t38_fragment_error,
+ {"Message defragmentation error", "t38.fragment.error",
FT_FRAMENUM, BASE_NONE, NULL, 0x00, NULL, HFILL } },
- {&hf_data_reassembled_in,
- {"Reassembled in", "data.reassembled.in",
+ {&hf_t38_reassembled_in,
+ {"Reassembled in", "t38.reassembled.in",
FT_FRAMENUM, BASE_NONE, NULL, 0x00, NULL, HFILL } },
};