aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-smb2.h
diff options
context:
space:
mode:
authorRonnie Sahlberg <ronnie_sahlberg@ozemail.com.au>2006-02-07 12:01:34 +0000
committerRonnie Sahlberg <ronnie_sahlberg@ozemail.com.au>2006-02-07 12:01:34 +0000
commitdd2f806e1545c2fdd433069b086d5554b7e3f851 (patch)
tree1b36aeb1b1540195e1d09a21d42bb52ceff2f50d /epan/dissectors/packet-smb2.h
parentc35dfab4e9c82cc4d0a49b2a88c2743190042186 (diff)
handmerged patch from metze it conflicted with recent P bit patch i checked in
svn path=/trunk/; revision=17202
Diffstat (limited to 'epan/dissectors/packet-smb2.h')
-rw-r--r--epan/dissectors/packet-smb2.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/epan/dissectors/packet-smb2.h b/epan/dissectors/packet-smb2.h
index 1ef3e94f3d..fd238d4995 100644
--- a/epan/dissectors/packet-smb2.h
+++ b/epan/dissectors/packet-smb2.h
@@ -80,6 +80,8 @@ typedef struct _smb2_conv_info_t {
* as well as pointers to the conversation and the transaction specific
* structures.
*/
+#define SMB2_FLAGS_RESPONSE 0x00000001
+#define SMB2_FLAGS_PID_VALID 0x00000002
typedef struct _smb2_info_t {
guint16 opcode;
guint32 ioctl_function;
@@ -87,8 +89,7 @@ typedef struct _smb2_info_t {
guint32 tid;
guint64 uid;
guint64 seqnum;
- gboolean response; /* is this a response ? */
- gboolean pidvalid; /* is the pid valid ? */
+ guint32 flags;
smb2_conv_info_t *conv;
smb2_saved_info_t *saved;
smb2_tid_info_t *tree;