mirror of
https://github.com/samba-team/samba.git
synced 2024-12-23 17:34:34 +03:00
Sync misc.idl with Samba 4.
This commit is contained in:
parent
daeceff217
commit
bd8998226c
@ -106,6 +106,9 @@ interface security
|
||||
const int SEC_ADS_LIST_OBJECT = 0x00000080;
|
||||
const int SEC_ADS_CONTROL_ACCESS = 0x00000100;
|
||||
|
||||
/* invalid bits */
|
||||
const int SEC_MASK_INVALID = 0x0ce0fe00;
|
||||
|
||||
/* generic->specific mappings for files */
|
||||
const int SEC_RIGHTS_FILE_READ = SEC_STD_READ_CONTROL |
|
||||
SEC_STD_SYNCHRONIZE |
|
||||
@ -150,6 +153,7 @@ interface security
|
||||
const string SID_CREATOR_OWNER_DOMAIN = "S-1-3";
|
||||
const string SID_CREATOR_OWNER = "S-1-3-0";
|
||||
const string SID_CREATOR_GROUP = "S-1-3-1";
|
||||
const string SID_OWNER_RIGHTS = "S-1-3-4";
|
||||
|
||||
/* SECURITY_NT_AUTHORITY */
|
||||
const string NAME_NT_AUTHORITY = "NT AUTHORITY";
|
||||
@ -169,9 +173,14 @@ interface security
|
||||
const string SID_NT_TERMINAL_SERVER_USERS = "S-1-5-13";
|
||||
const string SID_NT_REMOTE_INTERACTIVE = "S-1-5-14";
|
||||
const string SID_NT_THIS_ORGANISATION = "S-1-5-15";
|
||||
const string SID_NT_IUSR = "S-1-5-17";
|
||||
const string SID_NT_SYSTEM = "S-1-5-18";
|
||||
const string SID_NT_LOCAL_SERVICE = "S-1-5-19";
|
||||
const string SID_NT_NETWORK_SERVICE = "S-1-5-20";
|
||||
const string SID_NT_DIGEST_AUTHENTICATION = "S-1-5-64-21";
|
||||
const string SID_NT_NTLM_AUTHENTICATION = "S-1-5-64-10";
|
||||
const string SID_NT_SCHANNEL_AUTHENTICATION = "S-1-5-64-14";
|
||||
const string SID_NT_OTHER_ORGANISATION = "S-1-5-1000";
|
||||
|
||||
/* SECURITY_BUILTIN_DOMAIN_RID */
|
||||
const string NAME_BUILTIN = "BUILTIN";
|
||||
@ -233,6 +242,7 @@ interface security
|
||||
SEC_PRIV_REMOTE_INTERACTIVE_LOGON = 24
|
||||
} sec_privilege;
|
||||
|
||||
|
||||
typedef [bitmap8bit] bitmap {
|
||||
SEC_ACE_FLAG_OBJECT_INHERIT = 0x01,
|
||||
SEC_ACE_FLAG_CONTAINER_INHERIT = 0x02,
|
||||
@ -373,4 +383,12 @@ interface security
|
||||
SECINFO_PROTECTED_SACL = 0x40000000,
|
||||
SECINFO_PROTECTED_DACL = 0x80000000
|
||||
} security_secinfo;
|
||||
|
||||
typedef [public,bitmap32bit] bitmap {
|
||||
KERB_ENCTYPE_DES_CBC_CRC = 0x00000001,
|
||||
KERB_ENCTYPE_DES_CBC_MD5 = 0x00000002,
|
||||
KERB_ENCTYPE_RC4_HMAC_MD5 = 0x00000004,
|
||||
KERB_ENCTYPE_AES128_CTS_HMAC_SHA1_96 = 0x00000008,
|
||||
KERB_ENCTYPE_AES256_CTS_HMAC_SHA1_96 = 0x00000010
|
||||
} kerb_EncTypes;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user