summaryrefslogtreecommitdiffstats
path: root/source4/libcli/wbclient/wbclient.h
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2014-01-30 19:05:09 +0000
committerVolker Lendecke <vl@samba.org>2014-02-10 10:56:55 +0100
commitfefc59619b58cb0c38bf7e6ac2ebcc25a5ebbd6c (patch)
tree5b0e853edff4ce41123e29239856d2305a81e8ce /source4/libcli/wbclient/wbclient.h
parent907f49ef1f599397174858a4e57f9eb91e35593b (diff)
downloadsamba-fefc59619b58cb0c38bf7e6ac2ebcc25a5ebbd6c.tar.gz
samba-fefc59619b58cb0c38bf7e6ac2ebcc25a5ebbd6c.tar.xz
samba-fefc59619b58cb0c38bf7e6ac2ebcc25a5ebbd6c.zip
libwbclient4: Add wbc_sids_to_xids
Signed-off-by: Volker Lendecke <vl@samba.org> Reviewed-by: Kai Blin <kai@samba.org>
Diffstat (limited to 'source4/libcli/wbclient/wbclient.h')
-rw-r--r--source4/libcli/wbclient/wbclient.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/source4/libcli/wbclient/wbclient.h b/source4/libcli/wbclient/wbclient.h
index 1fa2f59c57..33a21f318d 100644
--- a/source4/libcli/wbclient/wbclient.h
+++ b/source4/libcli/wbclient/wbclient.h
@@ -39,6 +39,9 @@ struct composite_context *wbc_sids_to_xids_send(struct wbc_context *wbc_ctx,
NTSTATUS wbc_sids_to_xids_recv(struct composite_context *ctx,
struct id_map **ids);
+NTSTATUS wbc_sids_to_xids(struct tevent_context *ev, struct id_map *ids,
+ uint32_t count);
+
struct composite_context *wbc_xids_to_sids_send(struct wbc_context *wbc_ctx,
TALLOC_CTX *mem_ctx,
uint32_t count,
@@ -47,3 +50,5 @@ struct composite_context *wbc_xids_to_sids_send(struct wbc_context *wbc_ctx,
NTSTATUS wbc_xids_to_sids_recv(struct composite_context *ctx,
struct id_map **ids);
+NTSTATUS wbc_xids_to_sids(struct tevent_context *ev, struct id_map *ids,
+ uint32_t count);