aboutsummaryrefslogtreecommitdiffstats
path: root/packet-frame.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2002-01-17 09:28:22 +0000
committerGuy Harris <guy@alum.mit.edu>2002-01-17 09:28:22 +0000
commit816e7978c4fea56e412139be3860b6afadca301a (patch)
tree4ec5d37aec44806fb1b57689a77c74a430f6b4ef /packet-frame.c
parentcd172815f66b86669f05206107c1aa74d1667e38 (diff)
Mark un-reassembled TCP segments as (possibly) being un-reassembled, by
setting the "pinfo->fragmented" flag. If a ReportedBoundsError occurs, flag the frame as being an unreassembled packet, not an unreassembled fragmented packet, as it may have been segmented across TCP segment boundaries rather than being part of an IPv4/IPv6/CLNP/etc. fragmented/segmented packet. svn path=/trunk/; revision=4558
Diffstat (limited to 'packet-frame.c')
-rw-r--r--packet-frame.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/packet-frame.c b/packet-frame.c
index c95a2823c6..306d82d59a 100644
--- a/packet-frame.c
+++ b/packet-frame.c
@@ -2,7 +2,7 @@
*
* Top-most dissector. Decides dissector based on Wiretap Encapsulation Type.
*
- * $Id: packet-frame.c,v 1.18 2002/01/17 06:29:16 guy Exp $
+ * $Id: packet-frame.c,v 1.19 2002/01/17 09:28:22 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -169,9 +169,9 @@ dissect_frame(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
*/
if (check_col(pinfo->cinfo, COL_INFO))
col_append_str(pinfo->cinfo, COL_INFO,
- "[Unreassembled Fragmented Packet]");
+ "[Unreassembled Packet]");
proto_tree_add_protocol_format(tree, proto_unreassembled,
- tvb, 0, 0, "[Unreassembled Fragmented Packet: %s]",
+ tvb, 0, 0, "[Unreassembled Packet: %s]",
pinfo->current_proto );
} else {
if (check_col(pinfo->cinfo, COL_INFO))