summaryrefslogtreecommitdiff
path: root/epan/dissectors/packet-dcerpc.h
diff options
context:
space:
mode:
authorRonnie Sahlberg <ronnie_sahlberg@ozemail.com.au>2009-10-01 08:55:25 +0000
committerRonnie Sahlberg <ronnie_sahlberg@ozemail.com.au>2009-10-01 08:55:25 +0000
commit2ea2589afb938ad3d61635e9a55880af72424c1a (patch)
tree680ee88b7424678ce4df8dbe44db1abc63d2d0fd /epan/dissectors/packet-dcerpc.h
parentf9fb2a7d7adeb5b5a18d37a77a3d59c6f20a108c (diff)
downloadwireshark-2ea2589afb938ad3d61635e9a55880af72424c1a.tar.gz
we need to copy the information about the transport syntax, i.e. i fit
is ndr64 or not, from the bind information to the data we store for each individual pdu, since the trnasport syntax may change dynamically back and forth between "normal" and "ndr64" on the same conversation. svn path=/trunk/; revision=30226
Diffstat (limited to 'epan/dissectors/packet-dcerpc.h')
-rw-r--r--epan/dissectors/packet-dcerpc.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/epan/dissectors/packet-dcerpc.h b/epan/dissectors/packet-dcerpc.h
index bb76ce4c46..9731b53001 100644
--- a/epan/dissectors/packet-dcerpc.h
+++ b/epan/dissectors/packet-dcerpc.h
@@ -302,13 +302,15 @@ typedef struct _dcerpc_call_value {
*/
void *private_data; /* XXX This will later be renamed as ep_data */
e_ctx_hnd *pol; /* policy handle tracked between request/response*/
+#define DCERPC_IS_NDR64 0x00000001
+ guint32 flags; /* flags for this transaction */
} 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 */
- guint8 ptype; /* packet type: PDU_REQ, PDU_RESP, ... */
+ guint8 ptype; /* packet type: PDU_REQ, PDU_RESP, ... */
gboolean conformant_run;
gint32 conformant_eaten; /* how many bytes did the conformant run eat?*/
guint32 array_max_count; /* max_count for conformant arrays */