diff options
author | Guy Harris <guy@alum.mit.edu> | 2001-11-20 06:24:20 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2001-11-20 06:24:20 +0000 |
commit | 7cd2bc5659d76ce8975105b2924a6c2ca06cc9ad (patch) | |
tree | 40c00f3d6382ce2cf3223899e50600bcbebb9065 /smb.h | |
parent | a9b1809b0f6c82fc9746c39cfef7e8c75db35bd4 (diff) | |
download | wireshark-7cd2bc5659d76ce8975105b2924a6c2ca06cc9ad.tar.gz wireshark-7cd2bc5659d76ce8975105b2924a6c2ca06cc9ad.tar.bz2 wireshark-7cd2bc5659d76ce8975105b2924a6c2ca06cc9ad.zip |
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.h | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -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 |