diff options
author | Günther Deschner <gd@samba.org> | 2008-10-10 10:54:06 +0200 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2008-10-10 15:35:58 +0200 |
commit | 4464011ceaca803349052ed43217710fc3c33a9e (patch) | |
tree | d08ea8e1cd56e5eb8dfa5369d4cc827e3ba19350 /source3/nsswitch | |
parent | 08d3918cf8773f1a3f67a82123ebe006ea581e4e (diff) | |
download | samba-4464011ceaca803349052ed43217710fc3c33a9e.tar.gz samba-4464011ceaca803349052ed43217710fc3c33a9e.tar.bz2 samba-4464011ceaca803349052ed43217710fc3c33a9e.zip |
libwbclient: add wbcBlob and wbcNamedBlob.
Guenther
Diffstat (limited to 'source3/nsswitch')
-rw-r--r-- | source3/nsswitch/libwbclient/wbclient.h | 19 |
1 files changed, 19 insertions, 0 deletions
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 @@ -219,6 +219,25 @@ struct wbcAuthUserParams { }; /** + * @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 **/ |