svn commit: samba r13630 - in branches/SAMBA_4_0/source/librpc/idl: .

gd at samba.org gd at samba.org
Wed Feb 22 13:52:00 GMT 2006


Author: gd
Date: 2006-02-22 13:52:00 +0000 (Wed, 22 Feb 2006)
New Revision: 13630

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=13630

Log:
Add new ACB-bits as seen in acct_flags in the PAC info3 
(merge from Samba 3).

Guenther

Modified:
   branches/SAMBA_4_0/source/librpc/idl/samr.idl


Changeset:
Modified: branches/SAMBA_4_0/source/librpc/idl/samr.idl
===================================================================
--- branches/SAMBA_4_0/source/librpc/idl/samr.idl	2006-02-22 13:42:54 UTC (rev 13629)
+++ branches/SAMBA_4_0/source/librpc/idl/samr.idl	2006-02-22 13:52:00 UTC (rev 13630)
@@ -20,17 +20,23 @@
 
 	/* account control (acct_flags) bits */
 	typedef [public,bitmap32bit] bitmap {
-		ACB_DISABLED  = 0x00000001,  /* 1 = User account disabled */
-		ACB_HOMDIRREQ = 0x00000002,  /* 1 = Home directory required */
-		ACB_PWNOTREQ  = 0x00000004,  /* 1 = User password not required */
-		ACB_TEMPDUP   = 0x00000008,  /* 1 = Temporary duplicate account */
-		ACB_NORMAL    = 0x00000010,  /* 1 = Normal user account */
-		ACB_MNS       = 0x00000020,  /* 1 = MNS logon user account */
-		ACB_DOMTRUST  = 0x00000040,  /* 1 = Interdomain trust account */
-		ACB_WSTRUST   = 0x00000080,  /* 1 = Workstation trust account */
-		ACB_SVRTRUST  = 0x00000100,  /* 1 = Server trust account */
-		ACB_PWNOEXP   = 0x00000200,  /* 1 = User password does not expire */
-		ACB_AUTOLOCK  = 0x00000400   /* 1 = Account auto locked */
+		ACB_DISABLED			= 0x00000001,  /* 1 = User account disabled */
+		ACB_HOMDIRREQ			= 0x00000002,  /* 1 = Home directory required */
+		ACB_PWNOTREQ			= 0x00000004,  /* 1 = User password not required */
+		ACB_TEMPDUP			= 0x00000008,  /* 1 = Temporary duplicate account */
+		ACB_NORMAL			= 0x00000010,  /* 1 = Normal user account */
+		ACB_MNS				= 0x00000020,  /* 1 = MNS logon user account */
+		ACB_DOMTRUST			= 0x00000040,  /* 1 = Interdomain trust account */
+		ACB_WSTRUST			= 0x00000080,  /* 1 = Workstation trust account */
+		ACB_SVRTRUST			= 0x00000100,  /* 1 = Server trust account */
+		ACB_PWNOEXP			= 0x00000200,  /* 1 = User password does not expire */
+		ACB_AUTOLOCK			= 0x00000400,  /* 1 = Account auto locked */
+		ACB_ENC_TXT_PWD_ALLOWED		= 0x00000800,  /* 1 = Encryped text password is allowed */
+		ACB_SMARTCARD_REQUIRED		= 0x00001000,  /* 1 = Smart Card required */
+		ACB_TRUSTED_FOR_DELEGATION	= 0x00002000,  /* 1 = Trusted for Delegation */
+		ACB_NOT_DELEGATED		= 0x00004000,  /* 1 = Not delegated */
+		ACB_USE_DES_KEY_ONLY		= 0x00008000,  /* 1 = Use DES key only */
+		ACB_DONT_REQUIRE_PREAUTH	= 0x00010000   /* 1 = Preauth not required */
 	} samr_AcctFlags;
 
 	/******************/



More information about the samba-cvs mailing list