mirror of
https://github.com/lldap/lldap.git
synced 2026-04-25 08:15:52 +03:00
[GH-ISSUE #698] Support the Paged Results Control (RFC2696) #247
Labels
No labels
backend
blocked
bug
cleanup
dependencies
docker
documentation
duplicate
enhancement
enhancement
frontend
github_actions
good first issue
help wanted
help wanted
integration
invalid
ldap
pull-request
question
rust
rust
tests
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/lldap-lldap#247
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @broeng on GitHub (Oct 5, 2023).
Original GitHub issue: https://github.com/lldap/lldap/issues/698
Originally assigned to: @broeng on GitHub.
I am dealing with some proprietary software that will happily connect and search lldap for users, as part of a user import, but fails the entire import because it assumes search results are always pageable, and is unable to locate the Paged Results Control in the response.
In my case, the software will happily accept any number of results, so a search response containing all results, and a Paged Results Control indicating no futher results available, would satisfy the implementation and allow the import to go through. I could imagine this to be a common usage pattern.
So, I'd like to propose we extend the search result response with a control list containing the Paged Results Control, with a zero length "cookie" indicating no further results.
@broeng commented on GitHub (Oct 6, 2023):
Implemented with PR 699