diff options
author | Sumit Bose <sbose@redhat.com> | 2010-10-05 13:51:05 +0200 |
---|---|---|
committer | Stephen Gallagher <sgallagh@redhat.com> | 2010-10-13 09:49:38 -0400 |
commit | 619bd403265ce0880989ba6f8324b010949851bc (patch) | |
tree | 84c7a2373bc26b8b5c42e94814f2933146d76634 /src/providers/ldap/sdap_async.h | |
parent | d9ed57c641b91c9c499a53329d606d5061ed47d1 (diff) | |
download | sssd-619bd403265ce0880989ba6f8324b010949851bc.tar.gz sssd-619bd403265ce0880989ba6f8324b010949851bc.tar.bz2 sssd-619bd403265ce0880989ba6f8324b010949851bc.zip |
Implement netgroup support for LDAP provider
Diffstat (limited to 'src/providers/ldap/sdap_async.h')
-rw-r--r-- | src/providers/ldap/sdap_async.h | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/src/providers/ldap/sdap_async.h b/src/providers/ldap/sdap_async.h index 20888011..bf54bbd1 100644 --- a/src/providers/ldap/sdap_async.h +++ b/src/providers/ldap/sdap_async.h @@ -59,6 +59,19 @@ struct tevent_req *sdap_get_groups_send(TALLOC_CTX *memctx, int sdap_get_groups_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx, char **timestamp); +struct tevent_req *sdap_get_netgroups_send(TALLOC_CTX *memctx, + struct tevent_context *ev, + struct sss_domain_info *dom, + struct sysdb_ctx *sysdb, + struct sdap_options *opts, + struct sdap_handle *sh, + const char **attrs, + const char *wildcard); +int sdap_get_netgroups_recv(struct tevent_req *req, + TALLOC_CTX *mem_ctx, char **timestamp, + size_t *reply_count, + struct sysdb_attrs ***reply); + struct tevent_req *sdap_kinit_send(TALLOC_CTX *memctx, struct tevent_context *ev, struct be_ctx *be, @@ -135,5 +148,4 @@ struct tevent_req *sdap_get_generic_send(TALLOC_CTX *memctx, int sdap_get_generic_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx, size_t *reply_count, struct sysdb_attrs ***reply_list); - #endif /* _SDAP_ASYNC_H_ */ |