summaryrefslogtreecommitdiff
path: root/server/providers/ldap/sdap_async_accounts.c
AgeCommit message (Collapse)AuthorFilesLines
2010-02-18Rename server/ directory to src/Stephen Gallagher1-2065/+0
Also update BUILD.txt
2009-12-07Allow nesting to fix #310Simo Sorce1-0/+1
2009-12-07Fix nested group membershipsSimo Sorce1-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.
2009-12-07Resolve nested groups also when rfc2307bis is usedSimo Sorce1-68/+2
2009-11-20Filter by id range before actually storing entries.Simo Sorce1-0/+24
This way we do not need to check for id ranges on every search.
2009-11-18Store initgr expire time on initgr callSimo Sorce1-6/+17
2009-11-09Fix tevent_req error checking.Simo Sorce1-61/+10
When possible using a macro that correctly deals with tstate
2009-11-09Fix enumerationsSimo Sorce1-2/+6
The counter was not set so we were storing only the first user for each anumeration.
2009-11-06Split async helpers in multiple filesSimo Sorce1-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.