aboutsummaryrefslogtreecommitdiffstats
path: root/smb.h
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2000-02-14 04:02:21 +0000
committerGuy Harris <guy@alum.mit.edu>2000-02-14 04:02:21 +0000
commit12df8af4e3703a7cffd38486ec09a3789c22fbf2 (patch)
tree0ce261d8450317177091fbc9b5b1e73da238c6ef /smb.h
parent0fa3ae9df0e8afadb6dfcebc9818a9858aa8e6a1 (diff)
Jeff Foster's SMB Mailslot and Netlogin dissectors; he split
"packet-smb.c" up into several files. svn path=/trunk/; revision=1629
Diffstat (limited to 'smb.h')
-rw-r--r--smb.h20
1 files changed, 19 insertions, 1 deletions
diff --git a/smb.h b/smb.h
index 9474327230..91373386ec 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.4 2000/01/07 22:05:42 guy Exp $
+ * $Id: smb.h,v 1.5 2000/02/14 04:02:21 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -626,6 +626,24 @@
#define SMB_LMapi_SetUserInfo 0x0072
#define SMB_LMapi_UserPasswordSet 0x0073
+struct smb_request_val {
+ guint16 last_transact2_command;
+ gchar *last_transact_command;
+ guint16 mid;
+ guint16 last_lanman_cmd;
+ gchar *last_param_descrip; /* Keep these descriptors around */
+ gchar *last_data_descrip;
+ guint16 trans_response_seen;
+ guint16 last_level; /* Last level in request */
+};
+
+struct smb_info {
+ int tid, uid, mid, pid; /* Any more? */
+ conversation_t *conversation;
+ struct smb_request_val *request_val;
+ int unicode;
+};
+
#endif