aboutsummaryrefslogtreecommitdiffstats
path: root/rpc_defrag.h
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2003-04-21 08:13:18 +0000
committerGuy Harris <guy@alum.mit.edu>2003-04-21 08:13:18 +0000
commit5c1d9182ec23cdc02db34460b82c18fdbdb68dc1 (patch)
tree8b57e9853931f6b78203afa6999d1df1317cc6dc /rpc_defrag.h
parentc9488831e2966df1b65050bf1d220fad24fb94d5 (diff)
Make "first_pdu" an argument rather than a global in the ONC RPC
dissector - including the ONC RPC-over-TCP record marking code, which is also used by NDMP. That means that the NDMP dissector can, like the ONC RPC dissector, put into the Info column items for all the NDMP messages dissected for a frame; make it do so. svn path=/trunk/; revision=7516
Diffstat (limited to 'rpc_defrag.h')
-rw-r--r--rpc_defrag.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/rpc_defrag.h b/rpc_defrag.h
index f674876456..02e60f9bfe 100644
--- a/rpc_defrag.h
+++ b/rpc_defrag.h
@@ -1,7 +1,7 @@
-/* rpc-defrag.h
+/* rpc_defrag.h
* Declarations for RPC defragmentation
*
- * $Id: rpc_defrag.h,v 1.4 2002/08/28 21:00:41 jmayer Exp $
+ * $Id: rpc_defrag.h,v 1.5 2003/04/21 08:13:18 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -32,12 +32,12 @@
#define RPC_RM_FRAGLEN 0x7fffffffL
typedef gboolean (*rec_dissector_t)(tvbuff_t *, packet_info *, proto_tree *,
- tvbuff_t *, fragment_data *, gboolean, guint32);
+ tvbuff_t *, fragment_data *, gboolean, guint32, gboolean);
extern void show_rpc_fraginfo(tvbuff_t *tvb, tvbuff_t *frag_tvb,
proto_tree *tree, guint32 rpc_rm, fragment_data *ipfd_head, packet_info *pinfo);
extern int dissect_rpc_fragment(tvbuff_t *tvb, int offset, packet_info *pinfo,
proto_tree *tree, rec_dissector_t dissector, gboolean is_heur,
- int proto, int ett, gboolean defragment);
+ int proto, int ett, gboolean defragment, gboolean first_pdu);
#endif /* __RPC_DEFRAG_H__ */