aboutsummaryrefslogtreecommitdiffstats
path: root/smb.h
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2002-02-20 21:46:42 +0000
committerGuy Harris <guy@alum.mit.edu>2002-02-20 21:46:42 +0000
commitac4cd62ed86001a2d79c286361eff14ced6d546f (patch)
tree27da6ae6adce2ececfa8c25aaa315aacb8ae77d3 /smb.h
parent4002814932ad034d55568afdd3b454713a1ee35a (diff)
From Ronnie Sahlberg: add the actual SMB command to the structure that
remembers SMBs for request/response matching, and make sure the request and the response have the same type (or that the response has a different type but is a valid response to the request). svn path=/trunk/; revision=4763
Diffstat (limited to 'smb.h')
-rw-r--r--smb.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/smb.h b/smb.h
index a54e5ada62..280cbb5caf 100644
--- a/smb.h
+++ b/smb.h
@@ -2,7 +2,7 @@
* Defines for smb packet dissection
* Copyright 1999, Richard Sharpe <rsharpe@ns.aus.com>
*
- * $Id: smb.h,v 1.32 2002/01/08 05:52:05 guy Exp $
+ * $Id: smb.h,v 1.33 2002/02/20 21:46:42 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -225,6 +225,7 @@
*/
typedef struct {
guint32 frame_req, frame_res;
+ int cmd;
void *extra_info;
} smb_saved_info_t;