LdapServer.search(): add default filterstr and attrs parameter values
This commit is contained in:
parent
66df317940
commit
d49ae5aabb
1 changed files with 1 additions and 1 deletions
|
@ -64,7 +64,7 @@ class LdapServer(object):
|
||||||
return ldap.SCOPE_SUBTREE
|
return ldap.SCOPE_SUBTREE
|
||||||
raise Exception("Unknown LDAP scope '%s'" % scope)
|
raise Exception("Unknown LDAP scope '%s'" % scope)
|
||||||
|
|
||||||
def search(self, basedn, filterstr, attrs, sizelimit=0, scope='sub'):
|
def search(self, basedn, filterstr='(objectClass=*)', attrs=[], sizelimit=0, scope='sub'):
|
||||||
res_id = self.con.search(basedn, self.get_scope(scope), filterstr, attrs)
|
res_id = self.con.search(basedn, self.get_scope(scope), filterstr, attrs)
|
||||||
ret = {}
|
ret = {}
|
||||||
c=0
|
c=0
|
||||||
|
|
Loading…
Reference in a new issue