From 796463906a54e259bd5b582ce84af4297a58eafc Mon Sep 17 00:00:00 2001 From: Stephen Gallagher Date: Sat, 28 Jan 2012 11:40:00 -0500 Subject: LDAP: Add support for service lookups (non-enum) --- 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 2fd606bc..abf16b0c 100644 --- a/src/providers/ldap/sdap_async.h +++ b/src/providers/ldap/sdap_async.h @@ -211,4 +211,21 @@ errno_t sdap_save_all_names(const char *name, bool lowercase, struct sysdb_attrs *attrs); +struct tevent_req * +sdap_get_services_send(TALLOC_CTX *memctx, + struct tevent_context *ev, + struct sss_domain_info *dom, + struct sysdb_ctx *sysdb, + struct sdap_options *opts, + struct sdap_search_base **search_bases, + struct sdap_handle *sh, + const char **attrs, + const char *filter, + int timeout, + bool enumeration); +errno_t +sdap_get_services_recv(TALLOC_CTX *mem_ctx, + struct tevent_req *req, + char **usn_value); + #endif /* _SDAP_ASYNC_H_ */ -- cgit