summaryrefslogtreecommitdiffstats
path: root/src/providers/ldap/sdap_range.c
Commit message (Collapse)AuthorAgeFilesLines
* Adding option to disable retrieving large AD groups.Lukas Slebodnik2013-05-231-1/+12
| | | | | | | | | This commit adds new option ldap_disable_range_retrieval with default value FALSE. If this option is enabled, large groups(>1500) will not be retrieved and behaviour will be similar like was before commit ae8d047122c "LDAP: Handle very large Active Directory groups" https://fedorahosted.org/sssd/ticket/1823
* Fixed two minor memory leaksJan Zeleny2012-05-141-1/+2
|
* LDAP: Handle very large Active Directory groupsStephen Gallagher2012-05-101-0/+130
Active Directory 2008R2 allows only 1500 group members to be retrieved in a single lookup. However, when we hit such a situation, we can take advantage of the ASQ lookups, which are not similarly limited. With this patch, we will add any members found by ASQ that were not found by the initial lookup so we will end with a complete group listing. https://fedorahosted.org/sssd/ticket/783