From c3798208526b2ce15fe22991424dcb5b1910eebd Mon Sep 17 00:00:00 2001 From: Günther Deschner Date: Mon, 1 Dec 2008 12:53:59 +0100 Subject: samr: add samr_DomainServerState. Guenther --- librpc/idl/samr.idl | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'librpc') diff --git a/librpc/idl/samr.idl b/librpc/idl/samr.idl index 140782cdae..46478ee9e8 100644 --- a/librpc/idl/samr.idl +++ b/librpc/idl/samr.idl @@ -337,6 +337,11 @@ import "misc.idl", "lsa.idl", "security.idl"; DOMAIN_REFUSE_PASSWORD_CHANGE = 0x00000020 } samr_PasswordProperties; + typedef [v1_enum] enum { + DOMAIN_SERVER_ENABLED = 1, + DOMAIN_SERVER_DISABLED = 2 + } samr_DomainServerState; + typedef struct { uint16 min_password_length; uint16 password_history_length; @@ -352,7 +357,7 @@ import "misc.idl", "lsa.idl", "security.idl"; lsa_String domain_name; lsa_String primary; /* PDC name if this is a BDC */ udlong sequence_num; - uint32 unknown2; + samr_DomainServerState domain_server_state; samr_Role role; uint32 unknown3; uint32 num_users; @@ -386,7 +391,7 @@ import "misc.idl", "lsa.idl", "security.idl"; } samr_DomInfo8; typedef struct { - uint32 unknown; /* w2k3 returns 1 */ + samr_DomainServerState domain_server_state; } samr_DomInfo9; typedef struct { -- cgit