diff options
-rw-r--r-- | source3/include/ntlmssp.h | 17 |
1 files changed, 4 insertions, 13 deletions
diff --git a/source3/include/ntlmssp.h b/source3/include/ntlmssp.h index a8fe345cc5..673be83532 100644 --- a/source3/include/ntlmssp.h +++ b/source3/include/ntlmssp.h @@ -71,18 +71,9 @@ typedef struct ntlmssp_state { TALLOC_CTX *mem_ctx; enum NTLMSSP_ROLE role; + struct auth_context *auth_context; + struct auth_serversupplied_info *server_info; BOOL unicode; - char *user; - char *domain; - char *workstation; - DATA_BLOB lm_resp; - DATA_BLOB nt_resp; - DATA_BLOB chal; - void *auth_context; - const uint8 *(*get_challenge)(void *auth_context); - NTSTATUS (*check_password)(void *auth_context); - - const char *(*get_global_myname)(void); - const char *(*get_domain)(void); + char *orig_user; + char *orig_domain; } NTLMSSP_STATE; - |