From 749fb039719e60d82c496a2e1587bfa32d0360b8 Mon Sep 17 00:00:00 2001 From: Kai Blin Date: Fri, 24 Apr 2009 16:24:56 +0200 Subject: libwbclient: Implement wbcLookupSid_send/recv --- nsswitch/libwbclient/wbc_async.h | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'nsswitch/libwbclient/wbc_async.h') diff --git a/nsswitch/libwbclient/wbc_async.h b/nsswitch/libwbclient/wbc_async.h index a1f2e29831..21a45741b7 100644 --- a/nsswitch/libwbclient/wbc_async.h +++ b/nsswitch/libwbclient/wbc_async.h @@ -118,6 +118,17 @@ struct tevent_req *wbcGidToSid_send(TALLOC_CTX *mem_ctx, gid_t gid); wbcErr wbcGidToSid_recv(struct tevent_req *req, struct wbcDomainSid *psid); +/* Async functions from wbc_sid.c */ +struct tevent_req *wbcLookupSid_send(TALLOC_CTX *mem_ctx, + struct tevent_context *ev, + struct wb_context *wb_ctx, + const struct wbcDomainSid *sid); +wbcErr wbcLookupSid_recv(struct tevent_req *req, + TALLOC_CTX *mem_ctx, + char **pdomain, + char **pname, + enum wbcSidType *pname_type); + /* Async functions from wbc_util.c */ struct tevent_req *wbcPing_send(TALLOC_CTX *mem_ctx, -- cgit