From 7d35c7e8c5d2684321be879f7ff67816d4b31f09 Mon Sep 17 00:00:00 2001 From: Sumit Bose Date: Tue, 16 Sep 2014 15:22:08 +0200 Subject: Add sdap_deref_search_with_filter_send() MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Reviewed-by: Jakub Hrozek Reviewed-by: Pavel Březina --- src/providers/ldap/sdap_async.h | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) (limited to 'src/providers/ldap/sdap_async.h') diff --git a/src/providers/ldap/sdap_async.h b/src/providers/ldap/sdap_async.h index 7bb69f2fa..1239f28c1 100644 --- a/src/providers/ldap/sdap_async.h +++ b/src/providers/ldap/sdap_async.h @@ -195,6 +195,23 @@ int sdap_get_generic_recv(struct tevent_req *req, bool sdap_has_deref_support(struct sdap_handle *sh, struct sdap_options *opts); +struct tevent_req * +sdap_deref_search_with_filter_send(TALLOC_CTX *memctx, + struct tevent_context *ev, + struct sdap_options *opts, + struct sdap_handle *sh, + const char *search_base, + const char *filter, + const char *deref_attr, + const char **attrs, + int num_maps, + struct sdap_attr_map_info *maps, + int timeout); +int sdap_deref_search_with_filter_recv(struct tevent_req *req, + TALLOC_CTX *mem_ctx, + size_t *reply_count, + struct sdap_deref_attrs ***reply); + struct tevent_req * sdap_deref_search_send(TALLOC_CTX *memctx, struct tevent_context *ev, -- cgit