summaryrefslogtreecommitdiff
path: root/source3/include/smb.h
diff options
context:
space:
mode:
authorLuke Leighton <lkcl@samba.org>1997-10-25 15:49:27 +0000
committerLuke Leighton <lkcl@samba.org>1997-10-25 15:49:27 +0000
commit54932934421e8a34d190604122bc22d676e4c7ea (patch)
tree473193b8a88cc0e36611d283249fe5d5c9d5a8b5 /source3/include/smb.h
parent027630f9ff79ae97d62012e6ca1c703425046778 (diff)
downloadsamba-54932934421e8a34d190604122bc22d676e4c7ea.tar.gz
samba-54932934421e8a34d190604122bc22d676e4c7ea.tar.bz2
samba-54932934421e8a34d190604122bc22d676e4c7ea.zip
got the SAM logon request generated, and received a SAM logon response back.
YEAH! need to add: - client-side credential calculation - client-side parsing of the SAM logon response. (This used to be commit 349677de3f06bb0892862de0e11172adeffda18a)
Diffstat (limited to 'source3/include/smb.h')
-rw-r--r--source3/include/smb.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/source3/include/smb.h b/source3/include/smb.h
index b6b9d177a1..b19fbfb4ca 100644
--- a/source3/include/smb.h
+++ b/source3/include/smb.h
@@ -502,12 +502,12 @@ typedef struct id_info_1
uint32 param_ctrl; /* param control */
DOM_LOGON_ID logon_id; /* logon ID */
UNIHDR hdr_user_name; /* user name unicode header */
- UNIHDR hdr_workgroup_name; /* workgroup name unicode header */
+ UNIHDR hdr_wksta_name; /* workgroup name unicode header */
ARC4_OWF arc4_lm_owf; /* arc4 LM OWF Password */
ARC4_OWF arc4_nt_owf; /* arc4 NT OWF Password */
UNISTR2 uni_domain_name; /* domain name unicode string */
UNISTR2 uni_user_name; /* user name unicode string */
- UNISTR2 uni_workgroup_name; /* workgroup name unicode string */
+ UNISTR2 uni_wksta_name; /* workgroup name unicode string */
} DOM_ID_INFO_1;
@@ -522,7 +522,7 @@ typedef struct sam_info
union
{
- DOM_ID_INFO_1 id1; /* auth-level 1 */
+ DOM_ID_INFO_1 *id1; /* auth-level 1 */
} auth;