summaryrefslogtreecommitdiffstats
path: root/src/providers/ldap/ldap_access.c
Commit message (Collapse)AuthorAgeFilesLines
* LDAP: Amend sdap_access_check to allow any connectionJakub Hrozek2013-10-251-1/+10
| | | | | | | | | Related: https://fedorahosted.org/sssd/ticket/2082 Also move the check for subdomain to the handler. I think it is the job of the handler to decide which domain the request belongs to, not the request itself.
* handle ERR_ACCOUNT_EXPIRED properlyPavel Březina2013-06-171-1/+5
| | | | https://fedorahosted.org/sssd/ticket/1953
* Convert sdap_access to new error codesSimo Sorce2013-03-191-3/+11
| | | | Also simplify sdap_access_send to avoid completely fake _send() routines.
* Add be_req_get_data() helper funciton.Simo Sorce2013-01-211-2/+2
| | | | In preparation for making struct be_req opaque.
* Add be_req_get_be_ctx() helper.Simo Sorce2013-01-211-7/+4
| | | | In preparation for making be_req opaque
* Introduce be_req_terminate() helperSimo Sorce2013-01-211-2/+2
| | | | | Call it everywhere instead of directly dereferencing be_req->fn This is in preparation of making be_req opaque.
* Pass domain not be_req to access check functionsSimo Sorce2013-01-211-1/+2
|
* Move ldap provider access functionsSimo Sorce2013-01-211-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.