diff options
author | Guy Harris <guy@alum.mit.edu> | 2002-06-07 10:11:41 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2002-06-07 10:11:41 +0000 |
commit | 4f9508837a66205c3132624297e724e6dbefd482 (patch) | |
tree | f5e00b306053bd03c54de27712976a9f4ded3e70 /packet-rpc.c | |
parent | 1b72ef68e6acc8800a2c0a5a719e48aaf5d54c79 (diff) | |
download | wireshark-4f9508837a66205c3132624297e724e6dbefd482.tar.gz wireshark-4f9508837a66205c3132624297e724e6dbefd482.tar.bz2 wireshark-4f9508837a66205c3132624297e724e6dbefd482.zip |
Add "show_fragment_seq_tree()", which is like "show_fragment_tree()",
but for stuff reassembled with "fragment_add_seq()" or
"fragment_add_seq_check()".
Add a "fragment tag" string to the "fragment_items", so that packets
with fragmentation errors can be properly flagged as having "Illegal
fragments" or "Illegal segments" depending on the term used with the
protocol in question.
Make all the dissectors that can use "show_fragment_tree()" or
"show_fragment_seq_tree()", and don't already use them, do so.
svn path=/trunk/; revision=5644
Diffstat (limited to 'packet-rpc.c')
-rw-r--r-- | packet-rpc.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/packet-rpc.c b/packet-rpc.c index a352c0b1ea..107836cd3d 100644 --- a/packet-rpc.c +++ b/packet-rpc.c @@ -2,7 +2,7 @@ * Routines for rpc dissection * Copyright 1999, Uwe Girlich <Uwe.Girlich@philosys.de> * - * $Id: packet-rpc.c,v 1.96 2002/06/05 11:32:14 sahlberg Exp $ + * $Id: packet-rpc.c,v 1.97 2002/06/07 10:11:39 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@ethereal.com> @@ -223,7 +223,8 @@ fragment_items rpc_frag_items = { &hf_rpc_fragment_overlap_conflict, &hf_rpc_fragment_multiple_tails, &hf_rpc_fragment_too_long_fragment, - &hf_rpc_fragment_error + &hf_rpc_fragment_error, + "fragments" }; /* Hash table with info on RPC program numbers */ |