aboutsummaryrefslogtreecommitdiffstats
path: root/smb.h
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2001-11-20 06:24:20 +0000
committerGuy Harris <guy@alum.mit.edu>2001-11-20 06:24:20 +0000
commit7cd2bc5659d76ce8975105b2924a6c2ca06cc9ad (patch)
tree40c00f3d6382ce2cf3223899e50600bcbebb9065 /smb.h
parenta9b1809b0f6c82fc9746c39cfef7e8c75db35bd4 (diff)
Save the function code and FID for pipe requests, and use it for the
matching responses. svn path=/trunk/; revision=4228
Diffstat (limited to 'smb.h')
-rw-r--r--smb.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/smb.h b/smb.h
index 0626d9d8a6..fb204d9b35 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.23 2001/11/19 10:06:42 guy Exp $
+ * $Id: smb.h,v 1.24 2001/11/20 06:24:20 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -646,6 +646,8 @@ typedef struct {
typedef struct {
int subcmd;
int trans_subcmd;
+ int function;
+ int fid;
guint16 lanman_cmd;
guchar *param_descrip; /* Keep these descriptors around */
guchar *data_descrip;
@@ -672,6 +674,6 @@ typedef struct smb_info {
* Add a FID to the protocol tree and the Info column.
*/
extern void add_fid(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree,
- int offset, guint16 fid);
+ int offset, int len, guint16 fid);
#endif