diff options
author | Volker Lendecke <vl@samba.org> | 2014-01-30 19:05:09 +0000 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2014-02-10 10:56:55 +0100 |
commit | fefc59619b58cb0c38bf7e6ac2ebcc25a5ebbd6c (patch) | |
tree | 5b0e853edff4ce41123e29239856d2305a81e8ce /source4/libcli/wbclient/wbclient.h | |
parent | 907f49ef1f599397174858a4e57f9eb91e35593b (diff) | |
download | samba-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.h | 5 |
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); |