Negate a filter.
Paged results is an extension to the LDAP protocol + specified by RFC2696
+This function creates a control with the specified page
+ size for use in
+
+Control = eldap:paged_result_control(50),
+{ok, SearchResults} = search(Handle, [{base, "dc=example, dc=com"}], [Control]),
+
+ Paged results is an extension to the LDAP protocol + specified by RFC2696
+This function creates a control with the specified page
+ size and cookie for use in
+
For example:
+
+PageSize = 50,
+Control1 = eldap:paged_result_control(PageSize),
+{ok, SearchResults1} = search(Handle, [{base, "dc=example, dc=com"}], [Control1]),
+%% retrieve the returned cookie from the search results
+{ok, Cookie1} = eldap:paged_result_cookie(SearchResults1),
+Control2 = eldap:paged_result_control(PageSize, Cookie1),
+{ok, SearchResults2} = eldap:search(Handle, [{base, "dc=example,dc=com"}], [Control2]),
+%% etc
+
+ Paged results is an extension to the LDAP protocol + specified by RFC2696.
+This function extracts the cookie returned from the + server as a result of a paged search result.
+If the returned cookie is the empty string
+