aboutsummaryrefslogtreecommitdiffstats
path: root/rpc_defrag.h
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2003-04-21 08:13:18 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2003-04-21 08:13:18 +0000
commit5a273845412daf1cfc0316804ffa28bc6b784bfa (patch)
tree8b57e9853931f6b78203afa6999d1df1317cc6dc /rpc_defrag.h
parent1e102a3015bdd8abad3d3f569042793be84ffd3d (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. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@7516 f5534014-38df-0310-8fa8-9805f1628bb7
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__ */