diff options
-rw-r--r-- | librpc/gen_ndr/security.h | 3 | ||||
-rw-r--r-- | librpc/idl/security.idl | 31 |
2 files changed, 20 insertions, 14 deletions
diff --git a/librpc/gen_ndr/security.h b/librpc/gen_ndr/security.h index 03e509887c..0dc50c3d86 100644 --- a/librpc/gen_ndr/security.h +++ b/librpc/gen_ndr/security.h @@ -132,7 +132,9 @@ #define SID_BUILTIN_PREW2K ( "S-1-5-32-554" ) #define SID_BUILTIN_REMOTE_DESKTOP_USERS ( "S-1-5-32-555" ) #define SID_BUILTIN_NETWORK_CONF_OPERATORS ( "S-1-5-32-556" ) +#define SID_BUILTIN_INCOMING_FOREST_TRUST ( "S-1-5-32-557" ) #define DOMAIN_RID_LOGON ( 9 ) +#define DOMAIN_RID_ENTERPRISE_READONLY_DCS ( 498 ) #define DOMAIN_RID_ADMINISTRATOR ( 500 ) #define DOMAIN_RID_GUEST ( 501 ) #define DOMAIN_RID_KRBTGT ( 502 ) @@ -145,6 +147,7 @@ #define DOMAIN_RID_SCHEMA_ADMINS ( 518 ) #define DOMAIN_RID_ENTERPRISE_ADMINS ( 519 ) #define DOMAIN_RID_POLICY_ADMINS ( 520 ) +#define DOMAIN_RID_READONLY_DCS ( 521 ) #define DOMAIN_RID_RAS_SERVERS ( 553 ) #define NT4_ACL_REVISION ( SECURITY_ACL_REVISION_NT4 ) #define SD_REVISION ( SECURITY_DESCRIPTOR_REVISION_1 ) diff --git a/librpc/idl/security.idl b/librpc/idl/security.idl index 3c67fa7011..b191414951 100644 --- a/librpc/idl/security.idl +++ b/librpc/idl/security.idl @@ -262,22 +262,25 @@ interface security const string SID_BUILTIN_PREW2K = "S-1-5-32-554"; const string SID_BUILTIN_REMOTE_DESKTOP_USERS = "S-1-5-32-555"; const string SID_BUILTIN_NETWORK_CONF_OPERATORS = "S-1-5-32-556"; + const string SID_BUILTIN_INCOMING_FOREST_TRUST = "S-1-5-32-557"; /* well-known domain RIDs */ - const int DOMAIN_RID_LOGON = 9; - const int DOMAIN_RID_ADMINISTRATOR = 500; - const int DOMAIN_RID_GUEST = 501; - const int DOMAIN_RID_KRBTGT = 502; - const int DOMAIN_RID_ADMINS = 512; - const int DOMAIN_RID_USERS = 513; - const int DOMAIN_RID_GUESTS = 514; - const int DOMAIN_RID_DOMAIN_MEMBERS = 515; - const int DOMAIN_RID_DCS = 516; - const int DOMAIN_RID_CERT_ADMINS = 517; - const int DOMAIN_RID_SCHEMA_ADMINS = 518; - const int DOMAIN_RID_ENTERPRISE_ADMINS = 519; - const int DOMAIN_RID_POLICY_ADMINS = 520; - const int DOMAIN_RID_RAS_SERVERS = 553; + const int DOMAIN_RID_LOGON = 9; + const int DOMAIN_RID_ENTERPRISE_READONLY_DCS = 498; + const int DOMAIN_RID_ADMINISTRATOR = 500; + const int DOMAIN_RID_GUEST = 501; + const int DOMAIN_RID_KRBTGT = 502; + const int DOMAIN_RID_ADMINS = 512; + const int DOMAIN_RID_USERS = 513; + const int DOMAIN_RID_GUESTS = 514; + const int DOMAIN_RID_DOMAIN_MEMBERS = 515; + const int DOMAIN_RID_DCS = 516; + const int DOMAIN_RID_CERT_ADMINS = 517; + const int DOMAIN_RID_SCHEMA_ADMINS = 518; + const int DOMAIN_RID_ENTERPRISE_ADMINS = 519; + const int DOMAIN_RID_POLICY_ADMINS = 520; + const int DOMAIN_RID_READONLY_DCS = 521; + const int DOMAIN_RID_RAS_SERVERS = 553; /* |