From 4464011ceaca803349052ed43217710fc3c33a9e Mon Sep 17 00:00:00 2001 From: Günther Deschner Date: Fri, 10 Oct 2008 10:54:06 +0200 Subject: libwbclient: add wbcBlob and wbcNamedBlob. Guenther --- source3/nsswitch/libwbclient/wbclient.h | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) (limited to 'source3') diff --git a/source3/nsswitch/libwbclient/wbclient.h b/source3/nsswitch/libwbclient/wbclient.h index 327dafdae4..5f6e3be966 100644 --- a/source3/nsswitch/libwbclient/wbclient.h +++ b/source3/nsswitch/libwbclient/wbclient.h @@ -218,6 +218,25 @@ struct wbcAuthUserParams { } password; }; +/** + * @brief Generic Blob + **/ + +struct wbcBlob { + uint8_t *data; + size_t length; +}; + +/** + * @brief Named Blob + **/ + +struct wbcNamedBlob { + const char *name; + uint32_t flags; + struct wbcBlob blob; +}; + /** * @brief ChangePassword Parameters **/ -- cgit