summaryrefslogtreecommitdiff
path: root/server/responder/common/responder.h
AgeCommit message (Collapse)AuthorFilesLines
2009-05-26Silence warningsSimo Sorce1-2/+2
2009-05-26Do not fire up backend search when the data provider is localJakub Hrozek1-0/+4
2009-05-15added more flexible handling of client protocolSumit Bose1-0/+8
- allow different protocol versions for PAM and NSS - support more than one protocol version in the responder
2009-04-17Force user check and discover user's domainSimo Sorce1-0/+12
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-04-08Change the way we retrieve domainsSimo Sorce1-2/+1
To be able to correctly filter out duplicate names when multiple non-fully qualified domains are in use we need to be able to specify the domains order. This is now accomplished by the configuration paramets 'domains' in the config/domains entry. 'domains' is a comma separated list of domain names. This paramter allows also to have disbaled domains in the configuration without requiring to completely delete them. The domains list is now kept in a linked list of sss_domain_info objects. The first domain is also the "default" domain.
2009-04-07Unify name parsing and reposnder headersSimo Sorce1-0/+119
Use common sss_parse_name function in all responders Simplify responder headers by combining common,cmd,dp in one header and add name parse structure as part of the common responder context.