aboutsummaryrefslogtreecommitdiffstats
path: root/packet-dcerpc.h
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2002-01-03 20:42:41 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2002-01-03 20:42:41 +0000
commitae56f3550cd4d86606ac51aca616795a723b4312 (patch)
tree9d7ed68e6795cb91e489f4b048c0ff1f3823b2c6 /packet-dcerpc.h
parent48a5cc028123dc7200d102ac9118fca95317d53a (diff)
SPOOLSS RPC dissector, from Tim Potter. This includes adding additional
DOS error codes to the table of them, and exporting that table to other dissectors for protocols using DOS error codes. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@4470 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'packet-dcerpc.h')
-rw-r--r--packet-dcerpc.h12
1 files changed, 11 insertions, 1 deletions
diff --git a/packet-dcerpc.h b/packet-dcerpc.h
index c2799ccb17..5b36a622b2 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.5 2001/12/06 23:30:35 guy Exp $
+ * $Id: packet-dcerpc.h,v 1.6 2002/01/03 20:42:40 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -25,6 +25,8 @@
#ifndef __PACKET_DCERPC_H__
#define __PACKET_DCERPC_H__
+#include "conversation.h"
+
typedef struct _e_uuid_t {
guint32 Data1;
guint16 Data2;
@@ -155,4 +157,12 @@ typedef struct _dcerpc_private_info {
} data;
} dcerpc_private_info;
+/* Private data passed to subdissectors from the main DCERPC dissector. */
+
+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_info;
+
#endif /* packet-dcerpc.h */