summaryrefslogtreecommitdiffstats
path: root/server/providers/ldap/sdap_async_private.h
Commit message (Collapse)AuthorAgeFilesLines
* Rename server/ directory to src/Stephen Gallagher2010-02-181-68/+0
| | | | Also update BUILD.txt
* Reactivate old fd handling conditionallySumit Bose2010-02-051-0/+6
| | | | | | | Older versions of openLDAP do not provide a connection callback. This patch adds a configure check to see if the callback is available and activates the old way of handling the file description of the LDAP connection. This also means that it is not possible to follow referrals.
* Use ldap connection callbacks to get file descriptorsSumit Bose2010-02-021-2/+5
|
* Fix ldap child memory hierarchy and other issuesSimo Sorce2009-12-181-11/+11
| | | | | | | | | | | | | | | | | The timeout handler was not a child of the request so it could fire even though the request was already freed. The code wouldn't use async writes to the children so it could incur in a short write with no way to detect or recover from it. Also fixed style of some helper functions to pass explicit paramters instead of a general structure. Add common code to do async writes to pipes. Fixed async write issue for the krb5_child as well. Fix also sdap_kinit_done(), a return statement was missing and we were mixing SDAP_AUTH and errno return codes in state->result Remove usless helper function that just replicates talloc_strndup()
* Get TGT in a child process.Jakub Hrozek2009-11-251-0/+15
| | | | | | | To avoid blocking in a synchronous call, the TGT is saved in a separate process Fixes: #277
* Split async helpers in multiple filesSimo Sorce2009-11-061-0/+44
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.