diff options
Diffstat (limited to 'server_search.go')
-rw-r--r-- | server_search.go | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/server_search.go b/server_search.go index 4dda9a3..74d06b9 100644 --- a/server_search.go +++ b/server_search.go @@ -46,11 +46,6 @@ func HandleSearchRequest(req *ber.Packet, controls *[]Control, messageID uint64, for i, entry := range searchResp.Entries { if server.EnforceLDAP { - // size limit - if searchReq.SizeLimit > 0 && i >= searchReq.SizeLimit { - break - } - // filter keep, resultCode := ServerApplyFilter(filterPacket, entry) if resultCode != LDAPResultSuccess { @@ -77,6 +72,11 @@ func HandleSearchRequest(req *ber.Packet, controls *[]Control, messageID uint64, } } + // size limit + if searchReq.SizeLimit > 0 && i >= searchReq.SizeLimit { + break + } + // attributes if len(searchReq.Attributes) > 1 || (len(searchReq.Attributes) == 1 && len(searchReq.Attributes[0]) > 0) { entry, err = filterAttributes(entry, searchReq.Attributes) |