]> git.ipfire.org Git - thirdparty/samba.git/commitdiff
libwbclient: add wbcBlob and wbcNamedBlob.
authorGünther Deschner <gd@samba.org>
Fri, 10 Oct 2008 08:54:06 +0000 (10:54 +0200)
committerGünther Deschner <gd@samba.org>
Fri, 10 Oct 2008 13:35:58 +0000 (15:35 +0200)
Guenther

source3/nsswitch/libwbclient/wbclient.h

index 327dafdae40360c741f32a88b011df505b4ed5fb..5f6e3be9664650bb1a7418aecdd70ace11ab8dfd 100644 (file)
@@ -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
  **/