aboutsummaryrefslogtreecommitdiffstats
path: root/smb.h
diff options
context:
space:
mode:
authorsharpe <sharpe@f5534014-38df-0310-8fa8-9805f1628bb7>2002-08-31 00:12:14 +0000
committersharpe <sharpe@f5534014-38df-0310-8fa8-9805f1628bb7>2002-08-31 00:12:14 +0000
commitfc9d388b150e5492d05e00888743fa5fb381fcb3 (patch)
treeb57e64a21995f31e71250d91bcc48dd5815eed25 /smb.h
parent33e1d8842d111a5e2edf5bc069c4bc4813c2965f (diff)
Handle the lack of a security blob in negprot response when raw NTLMSSP is
being used properly. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@6149 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'smb.h')
-rw-r--r--smb.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/smb.h b/smb.h
index 343d29d142..a0b8060c77 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.45 2002/08/30 23:49:22 sharpe Exp $
+ * $Id: smb.h,v 1.46 2002/08/31 00:12:14 sharpe Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -233,6 +233,7 @@ typedef struct {
nstime_t req_time;
guint16 flags;
int cmd;
+ gboolean raw_ntlmssp; /* Do extended security exc use raw ntlmssp */
void *extra_info;
} smb_saved_info_t;
@@ -283,7 +284,6 @@ typedef struct smb_info {
gboolean unicode; /* Are strings in this SMB Unicode? */
gboolean request; /* Is this a request? */
gboolean unidir;
- gboolean raw_ntlmssp; /* Do extended security exc use raw ntlmssp */
int info_level;
int info_count;
smb_saved_info_t *sip; /* smb_saved_info_t, if any, for this */