diff options
-rw-r--r-- | auth/ntlmssp/ntlmssp.h | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/auth/ntlmssp/ntlmssp.h b/auth/ntlmssp/ntlmssp.h index 93bfb25824..9801b14ea3 100644 --- a/auth/ntlmssp/ntlmssp.h +++ b/auth/ntlmssp/ntlmssp.h @@ -24,10 +24,26 @@ NTSTATUS gensec_ntlmssp_init(void); +struct auth_context; +struct auth_serversupplied_info; +struct tsocket_address; +struct auth_user_info_dc; +struct gensec_security; +struct ntlmssp_state; + struct gensec_ntlmssp_context { + /* used only by s3 server implementation */ + struct auth_context *auth_context; + struct auth_serversupplied_info *server_info; + + /* Used by the s4 server implementation */ + struct auth_user_info_dc *user_info_dc; + + /* For GENSEC users */ struct gensec_security *gensec_security; + + /* used by both client and server implementation */ struct ntlmssp_state *ntlmssp_state; - struct auth_user_info_dc *user_info_dc; }; /* NTLMSSP mode */ |