s3-secrets: add lsa_secret struct to secrets IDL.
authorGünther Deschner <gd@samba.org>
Wed, 28 Oct 2009 17:07:56 +0000 (18:07 +0100)
committerGünther Deschner <gd@samba.org>
Sun, 31 Jul 2011 20:37:26 +0000 (22:37 +0200)
Guenther

source3/librpc/idl/secrets.idl

index b73f88b76648f4c687e83d572a93e3726c6f9508..1d0ba1940ab5c92dd6dba332a139b0180a8d0653 100644 (file)
@@ -25,5 +25,17 @@ import "security.idl";
                dom_sid domain_sid;     /* remote domain's sid */
        } TRUSTED_DOM_PASS;
 
+       /*
+        * s3 on-disc storage structure for lsa secrets, do not change !
+        */
+
+       typedef [public] struct {
+               DATA_BLOB *secret_current;
+               NTTIME secret_current_lastchange;
+               DATA_BLOB *secret_old;
+               NTTIME secret_old_lastchange;
+               security_descriptor *sd;
+       } lsa_secret;
+
 }