summaryrefslogtreecommitdiff
path: root/src/providers/ldap/ldap_access.c
AgeCommit message (Collapse)AuthorFilesLines
2013-09-24Include header file in implementation module.Lukas Slebodnik1-0/+1
Declarations of public functions was in header files, but header files was not included in implementation file.
2013-06-17handle ERR_ACCOUNT_EXPIRED properlyPavel Březina1-1/+5
https://fedorahosted.org/sssd/ticket/1953
2013-03-19Convert sdap_access to new error codesSimo Sorce1-3/+11
Also simplify sdap_access_send to avoid completely fake _send() routines.
2013-01-21Add be_req_get_data() helper funciton.Simo Sorce1-2/+2
In preparation for making struct be_req opaque.
2013-01-21Add be_req_get_be_ctx() helper.Simo Sorce1-7/+4
In preparation for making be_req opaque
2013-01-21Introduce be_req_terminate() helperSimo Sorce1-2/+2
Call it everywhere instead of directly dereferencing be_req->fn This is in preparation of making be_req opaque.
2013-01-21Pass domain not be_req to access check functionsSimo Sorce1-1/+2
2013-01-21Move ldap provider access functionsSimo Sorce1-0/+86
It was confusing to see the ldap provider own handler mixed with the generic ldap access code used also by the ipa and ad providers. So move the ldap provider handler code in its own file.