summaryrefslogtreecommitdiff
path: root/server/responder/nss/nsssrv_dp.c
AgeCommit message (Collapse)AuthorFilesLines
2009-08-11Change the why DP clients identifySimo Sorce1-80/+0
Mirrors what we have done with the monitor.
2009-08-10Simplify interfaces initializationSimo Sorce1-2/+10
Make as much as possible static, and remove use of talloc_reference and allocation/deallocation of memory when not necessary. Fix also responder use of rctx->conn, was mistakenly used for both monitor and dp connections.
2009-08-10Cosmetic changesSimo Sorce1-2/+2
Rationalize and rename connection names in preparatoin for merging of server and connection structures.
2009-04-17Force user check and discover user's domainSimo Sorce1-261/+0
Force a user lookup against the users domain provider. If a user domain is not specified search though all non fully qualifying domains. Perform authentication against the corrent domain auth backend, based on the user's domain found in the lookup if one was not specified. Also move the NSS-DP functions in COMMON-DP as they are reused by the PAM responder too now.
2009-03-27Fix potential segfault if dp_ctx is still NULL.Simo Sorce1-0/+9
May happen at startup if, for some reason dp is very slow to start and we receive a request before a reconnection is rescheduled in the responder dp reconnection code. This shouldn't happen normally so make it clear with a debug statement.
2009-03-27Make nsssrv use the common responder functionsSimo Sorce1-116/+7
Make nss_ctx a private pointer of the common resp_ctx Use sss_process_init and remove all duplicate functions from nsssrv.c
2009-02-26Rebase the code to use talloc, tdb, tevent, ldb as externalSimo Sorce1-10/+10
dependencies based on the latest samba code. Convert all references to the old events library to use the renamed tevent library.
2009-02-24Add PAM responderSumit Bose1-0/+433
Also move responders under server/responder with shared code in server/responder/common Signed-off-by: Simo Sorce <ssorce@redhat.com>