aboutsummaryrefslogtreecommitdiffstats
path: root/packet-dcerpc.h
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2002-02-11 08:19:09 +0000
committerGuy Harris <guy@alum.mit.edu>2002-02-11 08:19:09 +0000
commit04228a94a315d27ab0e590d31fc799eb80153a4d (patch)
tree67dc23627fdc67b01b44c76e217f335b139ac530 /packet-dcerpc.h
parent1726d487a50f92962f08a4f3bb85b06aa3a2ad83 (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. svn path=/trunk/; revision=4719
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;