diff options
author | Günther Deschner <gd@samba.org> | 2009-10-28 18:07:56 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2011-07-31 22:37:26 +0200 |
commit | 3fd1652104717cf9b7eead1979a718e1163341af (patch) | |
tree | 9498af007542029458e69a77a5e91df82b14abfe /source3/librpc/idl | |
parent | f9a5df89292eeab54b9eed4bacb5b11e7f31f1fb (diff) | |
download | samba-3fd1652104717cf9b7eead1979a718e1163341af.tar.gz samba-3fd1652104717cf9b7eead1979a718e1163341af.tar.bz2 samba-3fd1652104717cf9b7eead1979a718e1163341af.zip |
s3-secrets: add lsa_secret struct to secrets IDL.
Guenther
Diffstat (limited to 'source3/librpc/idl')
-rw-r--r-- | source3/librpc/idl/secrets.idl | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/source3/librpc/idl/secrets.idl b/source3/librpc/idl/secrets.idl index b73f88b766..1d0ba1940a 100644 --- a/source3/librpc/idl/secrets.idl +++ b/source3/librpc/idl/secrets.idl @@ -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; + } |