diff options
Diffstat (limited to 'source4/include')
-rw-r--r-- | source4/include/auth.h | 5 |
1 files changed, 4 insertions, 1 deletions
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; |