aboutsummaryrefslogtreecommitdiffstats
path: root/packet-dcerpc.h
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2002-01-23 05:38:32 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2002-01-23 05:38:32 +0000
commit1b00876989d1f3f28d69ac1e6ba62aa0b384ec95 (patch)
treea66df643035568aeca5431f712fd9e98abee63b2 /packet-dcerpc.h
parent2f46a706b8c4c6c2f4c783c413f4844ccb5e0c29 (diff)
From Ronnie Sahlberg: add support for finding the response that matches
a request. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@4600 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'packet-dcerpc.h')
-rw-r--r--packet-dcerpc.h11
1 files changed, 10 insertions, 1 deletions
diff --git a/packet-dcerpc.h b/packet-dcerpc.h
index 0e884b535d..481897790f 100644
--- a/packet-dcerpc.h
+++ b/packet-dcerpc.h
@@ -1,7 +1,7 @@
/* packet-dcerpc.h
* Copyright 2001, Todd Sabin <tas@webspan.net>
*
- * $Id: packet-dcerpc.h,v 1.7 2002/01/21 07:36:33 guy Exp $
+ * $Id: packet-dcerpc.h,v 1.8 2002/01/23 05:37:38 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -158,11 +158,20 @@ typedef struct _dcerpc_private_info {
} dcerpc_private_info;
/* Private data passed to subdissectors from the main DCERPC dissector. */
+typedef struct _dcerpc_call_value {
+ e_uuid_t uuid;
+ guint16 ver;
+ guint16 opnum;
+ gint32 req_frame;
+ gint32 rep_frame;
+ void *private_data;
+} dcerpc_call_value;
typedef struct _dcerpc_info {
conversation_t *conv; /* Which TCP stream we are in */
guint32 call_id; /* Context id for this call */
guint16 smb_fid; /* FID for DCERPC over SMB */
+ dcerpc_call_value *call_data;
} dcerpc_info;
#endif /* packet-dcerpc.h */