summaryrefslogtreecommitdiffstats
path: root/server/providers/ldap/sdap_async_accounts.c
Commit message (Collapse)AuthorAgeFilesLines
* Rename server/ directory to src/Stephen Gallagher2010-02-181-2065/+0
| | | | Also update BUILD.txt
* Allow nesting to fix #310Simo Sorce2009-12-071-0/+1
|
* Fix nested group membershipsSimo Sorce2009-12-071-143/+129
| | | | | | | | | Search the local db to find the local DN using the original DN as search key. This way we do not have to rely on weak and faulty heuristicts based on DN names. Add a few helper functions in the process and change the way we pass members to sysdb_store_group_send(), instead of passing users and groups list, just add member DNs to the other sysdb attrs.
* Resolve nested groups also when rfc2307bis is usedSimo Sorce2009-12-071-68/+2
|
* Filter by id range before actually storing entries.Simo Sorce2009-11-201-0/+24
| | | | This way we do not need to check for id ranges on every search.
* Store initgr expire time on initgr callSimo Sorce2009-11-181-6/+17
|
* Fix tevent_req error checking.Simo Sorce2009-11-091-61/+10
| | | | When possible using a macro that correctly deals with tstate
* Fix enumerationsSimo Sorce2009-11-091-2/+6
| | | | | The counter was not set so we were storing only the first user for each anumeration.
* Split async helpers in multiple filesSimo Sorce2009-11-061-0/+2156
The size of sdap_async.c was unmanageable. This patch splits it into a generic file with common infrastructure calls, a file that handles connection calls and a file for id related calls.