From a647df4607cb6d916cd689f92cd27995ca0f9ab4 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Mon, 30 Jan 2012 11:17:44 +1100 Subject: auth: Make check_password and generate_session_info hook generic gensec_ntlmssp does not need to know the internal form of the struct user_info_dc or auth_serversupplied_info. This will allow the calling logic to be put in common. Andrew Bartlett --- auth/ntlmssp/ntlmssp.h | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'auth/ntlmssp') diff --git a/auth/ntlmssp/ntlmssp.h b/auth/ntlmssp/ntlmssp.h index 9801b14ea3..54d3e53526 100644 --- a/auth/ntlmssp/ntlmssp.h +++ b/auth/ntlmssp/ntlmssp.h @@ -34,13 +34,10 @@ 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; + void *server_returned_info; /* used by both client and server implementation */ struct ntlmssp_state *ntlmssp_state; -- cgit