From ada6e26d5e6bacaacbe9cdebdabe41c383e5f8c8 Mon Sep 17 00:00:00 2001 From: Kai Blin Date: Thu, 2 Apr 2009 09:22:43 +0200 Subject: libwbclient: Implement wbcSidToGid_send/recv --- nsswitch/libwbclient/wbc_async.h | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'nsswitch/libwbclient/wbc_async.h') diff --git a/nsswitch/libwbclient/wbc_async.h b/nsswitch/libwbclient/wbc_async.h index 043b303632..eb8798ebc6 100644 --- a/nsswitch/libwbclient/wbc_async.h +++ b/nsswitch/libwbclient/wbc_async.h @@ -106,6 +106,12 @@ struct tevent_req *wbcUidToSid_send(TALLOC_CTX *mem_ctx, uid_t uid); wbcErr wbcUidToSid_recv(struct tevent_req *req, struct wbcDomainSid *psid); +struct tevent_req *wbcSidToGid_send(TALLOC_CTX *mem_ctx, + struct tevent_context *ev, + struct wb_context *wb_ctx, + const struct wbcDomainSid *sid); +wbcErr wbcSidToGid_recv(struct tevent_req *req, gid_t *pgid); + /* Async functions from wbc_util.c */ struct tevent_req *wbcPing_send(TALLOC_CTX *mem_ctx, -- cgit