Microsoft Internet Security and Acceleration Server 2000

FpcSDControl

The FpcSDControl enumerated type contains values that specify control flags for a security descriptor.

enum FpcSDControl{
  fpcSD_Control_Se_Owner_Defaulted	 = 0x1,
  fpcSD_Control_Se_Group_Defaulted	 = 0x2,
  fpcSD_Control_Se_Dacl_Present		= 0x4,
  fpcSD_Control_Se_Dacl_Defaulted		= 0x8,
  fpcSD_Control_Se_Sacl_Present		= 0x10,
  fpcSD_Control_Se_Sacl_Defaulted		= 0x20,
  fpcSD_Control_Se_Dacl_Auto_Inherit_Req = 0x100,
  fpcSD_Control_Se_Sacl_Auto_Inherit_Req = 0x200,
  fpcSD_Control_Se_Dacl_Auto_Inherited   = 0x400,
  fpcSD_Control_Se_Sacl_Auto_Inherited   = 0x800,
  fpcSD_Control_Se_Dacl_Protected		= 0x1000,
  fpcSD_Control_Se_Sacl_Protected		= 0x2000,
  fpcSD_Control_Se_Self_Relative		 = 0x8000
};

Members

fpcSD_Control_Se_Owner_Defaulted
A default mechanism provides the owner security identifier (SID) of the security descriptor rather than the original provider of the security descriptor.
fpcSD_Control_Se_Group_Defaulted
A default mechanism provides the group SID of the security descriptor rather than the original provider of the security descriptor.
fpcSD_Control_Se_Dacl_Present
The discretionary access-control list (DACL) is present in the security descriptor. If this flag is not set, or if this flag is set and the DACL is NULL, the security descriptor allows full access to everyone.
fpcSD_Control_Se_Dacl_Defaulted
The security descriptor uses a default DACL built from the creator's access token.
fpcSD_Control_Se_Sacl_Present
The system access-control list (SACL) is present in the security descriptor.
fpcSD_Control_Se_Sacl_Defaulted
The security descriptor uses a default SACL built from the creator's access token.
fpcSD_Control_Se_Dacl_Auto_Inherit_Req
THE DACL of the security descriptor must be inherited.
fpcSD_Control_Se_Sacl_Auto_Inherit_Req
The SACL of the security descriptor must be inherited.
fpcSD_Control_Se_Dacl_Auto_Inherited
The DACL of the security descriptor supports automatic propagation of inheritable access-control entries (ACEs) to existing child objects.
fpcSD_Control_Se_Sacl_Auto_Inherited
The SACL of the security descriptor supports automatic propagation of inheritable ACEs to existing child objects.
fpcSD_Control_Se_Dacl_Protected
The security descriptor will not allow inheritable ACEs to modify the DACL.
fpcSD_Control_Se_Sacl_Protected
The security descriptor will not allow inheritable ACEs to modify the SACL.
fpcSD_Control_Se_Self_Relative
The security descriptor is of self-relative format with all the security information in a continuous block of memory.

Requirements

  Windows NT/2000: Requires Windows 2000.
  Version: Requires ISA Server 2000.
  Header: Msfpccom.idl.