1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-22 13:34:15 +03:00

ntlmssp: Put members from auth_ntlmssp_state into gensec_ntlmssp_state

Signed-off-by: Stefan Metzmacher <metze@samba.org>
This commit is contained in:
Andrew Bartlett 2011-07-25 17:43:50 +10:00
parent 968b3674b1
commit 02eef4d130

View File

@ -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 {
struct gensec_security *gensec_security;
struct ntlmssp_state *ntlmssp_state;
/* 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;
};
/* NTLMSSP mode */