From d009dc61f90e45b695fb9eaaf11899c7572dc9a7 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Sun, 14 Dec 2003 10:45:50 +0000 Subject: ntlmssp over rpc over tcp now fully works I needed to hack the ntlmssp code a little, as the auth code in samba4 is out of date relative to the samba3 auth code. I need to do a merge :) (This used to be commit 6ee0935afe9444bf9bb24eed4e02e8377dc746b7) --- source4/include/auth.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'source4/include/auth.h') diff --git a/source4/include/auth.h b/source4/include/auth.h index 89e46e3782..84faba2b0d 100644 --- a/source4/include/auth.h +++ b/source4/include/auth.h @@ -78,8 +78,9 @@ typedef struct auth_serversupplied_info NT_USER_TOKEN *ptok; uint8 session_key[16]; - uint8 first_8_lm_hash[8]; + DATA_BLOB nt_session_key; + DATA_BLOB lm_session_key; uint32 sam_fill_level; /* How far is this structure filled? */ @@ -95,6 +96,8 @@ struct auth_context { /* Who set this up in the first place? */ const char *challenge_set_by; + BOOL challenge_may_be_modified; + struct auth_methods *challenge_set_method; /* What order are the various methods in? Try to stop it changing under us */ struct auth_methods *auth_method_list; -- cgit