summaryrefslogtreecommitdiff
path: root/server/responder/nss/nsssrv.h
AgeCommit message (Collapse)AuthorFilesLines
2009-03-27Make nsssrv use the common responder functionsSimo Sorce1-41/+8
Make nss_ctx a private pointer of the common resp_ctx Use sss_process_init and remove all duplicate functions from nsssrv.c
2009-03-24Fix buildSimo Sorce1-0/+3
forgot to commit a few changes
2009-03-20Retrieve some options from confdbSimo Sorce1-1/+1
This fixes some old 'Fixme's :)
2009-03-20Enhance server_setupSimo Sorce1-0/+2
Now it can load from scratch default configuration that is valid for all daemons. First thing, make it possible for each daemon/provider to set its own debug level in its configuration entry.
2009-03-13Implement Negative cache for NSSSimo Sorce1-0/+2
As for positive caches, negative caches are implement for all queries except enumerations. Also set the correct requires in sssd.spec as we now depend directly on tdb as well.
2009-03-09use fixed paths to sockets to make sure clients and server are using the sameSumit Bose1-1/+1
2009-03-06Fix reporting non-default users.Simo Sorce1-1/+3
We need to add the domain when users are not part of the default domain, otherwise name conflicts may happen.
2009-03-04Add enumeration backout period.Simo Sorce1-0/+4
If an enumeration has been requested recently enough, force the nss responder to read from the cache and not go out to each backend and do slow network operations. This greatly improves performances if enumerations are used often. Currently the balcout period is harcoded to 2 min, we will need to make it a configurable option.
2009-02-27Refactor creation of domain_map into confdbStephen Gallagher1-8/+1
The NSS provider, the Data Provider backends and the InfoPipe all need access to the domain map provided by the confdb. Instead of reimplimenting it in multiple places, it is now provided in a pair of helper functions from the confdb. confdb_get_domains() returns a domain map by reference. Always returns the most up-to-date set of domains from the confdb. confdb_get_domains_list() returns an array of strings of all the domain names. Always returns the most up-to-date set of domains from the confdb. This patch also modifies the btreemap_get_keys() function to better handle memory and report allocation failures.
2009-02-26Rebase the code to use talloc, tdb, tevent, ldb as externalSimo Sorce1-5/+5
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/+118
Also move responders under server/responder with shared code in server/responder/common Signed-off-by: Simo Sorce <ssorce@redhat.com>