diff options
Diffstat (limited to 'source4/librpc/ndr/ndr_sec.h')
-rw-r--r-- | source4/librpc/ndr/ndr_sec.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/source4/librpc/ndr/ndr_sec.h b/source4/librpc/ndr/ndr_sec.h index 79ba5b1564..81a3d6a944 100644 --- a/source4/librpc/ndr/ndr_sec.h +++ b/source4/librpc/ndr/ndr_sec.h @@ -72,6 +72,23 @@ struct security_descriptor { struct security_acl *dacl; /* user (discretionary) ACL */ }; + +/* + a security descriptor encapsulated in a buffer. + It is like this IDL: + typedef struct { + uint32 size; + [size_is(size)] uint8 *buf; + } sec_desc_buf; +*/ +struct sec_desc_buf { + uint32 size; /* the sd wire size - auto-generated */ + struct security_descriptor *sd; +}; + + + + /* query security descriptor */ struct smb_query_secdesc { struct { |