From 1d8d3fd7c3c2e6c46a3e01983dc26a5a650f6f84 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Thu, 27 Aug 2009 14:55:41 +0200 Subject: s3:winbind: Convert WINBINDD_GETUSERSIDS to the new API --- source3/winbindd/winbindd_proto.h | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) (limited to 'source3/winbindd/winbindd_proto.h') diff --git a/source3/winbindd/winbindd_proto.h b/source3/winbindd/winbindd_proto.h index 3faf25a751..aeb841edd1 100644 --- a/source3/winbindd/winbindd_proto.h +++ b/source3/winbindd/winbindd_proto.h @@ -114,10 +114,6 @@ void winbindd_getsidaliases_async(struct winbindd_domain *domain, void *private_data); enum winbindd_result winbindd_dual_getsidaliases(struct winbindd_domain *domain, struct winbindd_cli_state *state); -void winbindd_gettoken_async(TALLOC_CTX *mem_ctx, const DOM_SID *user_sid, - void (*cont)(void *private_data, bool success, - DOM_SID *sids, size_t num_sids), - void *private_data); void query_user_async(TALLOC_CTX *mem_ctx, struct winbindd_domain *domain, const DOM_SID *sid, void (*cont)(void *private_data, bool success, @@ -846,4 +842,11 @@ struct tevent_req *winbindd_getgrnam_send(TALLOC_CTX *mem_ctx, NTSTATUS winbindd_getgrnam_recv(struct tevent_req *req, struct winbindd_response *response); +struct tevent_req *winbindd_getusersids_send(TALLOC_CTX *mem_ctx, + struct tevent_context *ev, + struct winbindd_cli_state *cli, + struct winbindd_request *request); +NTSTATUS winbindd_getusersids_recv(struct tevent_req *req, + struct winbindd_response *response); + #endif /* _WINBINDD_PROTO_H_ */ -- cgit