summaryrefslogtreecommitdiffstats
path: root/src/providers/ldap/sdap_async_enum.c
Commit message (Collapse)AuthorAgeFilesLines
* LDAP: Make the cleanup task reusable for subdomainsJakub Hrozek2013-08-281-2/+2
| | | | | | Instead of always performing the cleanup on the main domain, the task now accepts a sdap_domain structure to perform the cleanup on. This change will make the cleanup task reusable for subdomains.
* LDAP: Make cleanup synchronousJakub Hrozek2013-08-281-20/+6
| | | | | | The LDAP cleanup request was asynchronous for no good reason, probably a leftover from the days of async sysdb. This patch makes it sychronous again, removing a lot of uneeded code.
* LDAP: Move the ldap enum request to its own reusable moduleJakub Hrozek2013-08-281-0/+687
The LDAP enumeration was too closely tied to the LDAP identity provider. Because some providers might need special handling such as refresh the master domain record before proceeding with the enumeration itself, this patch splits the request itself to a separate async request and lets the ldap_id_enum.c module only configure this new request. Also move the enum timestamp to sdap_domain to make the enum tracking per sdap domain. The cleanup timestamp will be moved in another patch.