aboutsummaryrefslogtreecommitdiffstats
path: root/packet-dcerpc.h
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2002-02-11 08:19:09 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2002-02-11 08:19:09 +0000
commit6d54e53c68a34ca2272f3accb85d3a57643ac269 (patch)
tree67dc23627fdc67b01b44c76e217f335b139ac530 /packet-dcerpc.h
parent260a6ad9062cade44a9c93e5d7034476c77ade76 (diff)
From Ronnie Sahlberg:
fix to LookupRids to match what the IDL file says; fix to "dissect_ndr_uint64()" to specify the right length to "proto_tree_add_item()"; give the protocol tree items for array header counts and offsets the correct offsets in the packet. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@4719 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'packet-dcerpc.h')
-rw-r--r--packet-dcerpc.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/packet-dcerpc.h b/packet-dcerpc.h
index 941a686836..193f0d406c 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.10 2002/01/29 09:13:28 guy Exp $
+ * $Id: packet-dcerpc.h,v 1.11 2002/02/11 08:19:09 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -200,8 +200,11 @@ typedef struct _dcerpc_info {
gboolean request;
gboolean conformant_run;
guint32 array_max_count; /* max_count for conformant arrays */
+ guint32 array_max_count_offset;
guint32 array_offset;
+ guint32 array_offset_offset;
guint32 array_actual_count;
+ guint32 array_actual_count_offset;
int hf_index;
dcerpc_call_value *call_data;
} dcerpc_info;