aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-mq.c
diff options
context:
space:
mode:
authorUlf Lamping <ulf.lamping@web.de>2004-08-21 09:02:52 +0000
committerUlf Lamping <ulf.lamping@web.de>2004-08-21 09:02:52 +0000
commitd530bd4e14072e9677395d60b9948c04f579ab13 (patch)
tree3f9be27e5d8ec59d4de5368c091899d003ce2201 /epan/dissectors/packet-mq.c
parent747f63150b44eb32bc8e0bdff66f82ef70f86ce9 (diff)
Prevent the word "desegmentation" at the GUI, but use reassembling at that places, as we also use "defragmentation" and "reassembling". Use reassembling as the general term for such actions.
I (hopefully) didn't changed any protocol fields or preference file names, but only the GUI labels appearing in the protocol display and the protocol preferences. Also added a note to the protocol preferences (where appropriate), that you have to enable "Allow subdissectors to reassemble TCP streams" at the corresponding protocol settings for TCP reassembling to take effect. If you encounter any mistakes I've made here, please let me know... svn path=/trunk/; revision=11784
Diffstat (limited to 'epan/dissectors/packet-mq.c')
-rw-r--r--epan/dissectors/packet-mq.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/epan/dissectors/packet-mq.c b/epan/dissectors/packet-mq.c
index 666415f7ae..237d15b49e 100644
--- a/epan/dissectors/packet-mq.c
+++ b/epan/dissectors/packet-mq.c
@@ -3256,12 +3256,13 @@ proto_register_mq(void)
mq_module = prefs_register_protocol(proto_mq, NULL);
prefs_register_bool_preference(mq_module, "desegment",
- "Desegment all MQ messages spanning multiple TCP segments",
- "Whether the MQ dissector should desegment all messages spanning multiple TCP segments",
+ "Reassemble MQ messages spanning multiple TCP segments",
+ "Whether the MQ dissector should reassemble messages spanning multiple TCP segments."
+ " To use this option, you must also enable \"Allow subdissectors to reassemble TCP streams\" in the TCP protocol settings.",
&mq_desegment);
prefs_register_bool_preference(mq_module, "reassembly",
"Reassemble segmented MQ messages",
- "Whether the MQ dissector should reassemble all MQ messages spanning multiple TSH segments",
+ "Whether the MQ dissector should reassemble MQ messages spanning multiple TSH segments",
&mq_reassembly);
}