summaryrefslogtreecommitdiff
path: root/source4/auth/samba_server_gensec.c
AgeCommit message (Collapse)AuthorFilesLines
2011-01-18s4-gensec Don't steal the auth_context, reference it.Andrew Bartlett1-4/+11
We don't want to steal this pointer away from the caller if it's been set up from python. Andrew Bartlett
2010-07-16s4-loadparm: 2nd half of lp_ to lpcfg_ conversionAndrew Tridgell1-1/+1
this converts all callers that use the Samba4 loadparm lp_ calling convention to use the lpcfg_ prefix. Signed-off-by: Andrew Bartlett <abartlet@samba.org>
2009-07-01removed a redundent talloc_stealAndrew Tridgell1-2/+0
2009-02-13Remove auth/ntlm as a dependency of GENSEC by means of function pointers.Andrew Bartlett1-0/+73
When starting GENSEC on the server, the auth subsystem context must be passed in, which now includes function pointers to the key elements. This should (when the other dependencies are fixed up) allow GENSEC to exist as a client or server library without bundling in too much of our server code. Andrew Bartlett