// fwpsk.h
NTSTATUS FwpsAleEndpointSetSecurityInfo0(
[in] HANDLE engineHandle,
[in] SECURITY_INFORMATION securityInfo,
[in, optional] const SID *sidOwner,
[in, optional] const SID *sidGroup,
[in, optional] const ACL *dacl,
[in, optional] const ACL *sacl
);
View the official Windows Driver Kit DDI referenceNo description available.
The FwpsAleEndpointSetSecurityInfo0 function sets security information about the application layer enforcement (ALE) endpoint enumeration session.
Note FwpsAleEndpointSetSecurityInfo0 is a specific version of FwpsAleEndpointSetSecurityInfo. See WFP Version-Independent Names and Targeting Specific Versions of Windows for more information.
engineHandle [in]A handle for an open session with the filter engine. This handle is obtained when a session is opened by calling FwpmEngineOpen0.
securityInfo [in]A set of security information flags. For more information, see the SECURITY_INFORMATION description in the Installable File Systems driver documentation.
sidOwner [in, optional]The security identifier of the security owner.
sidGroup [in, optional]The security identifier of the security group.
dacl [in, optional]The discretionary access control list.
sacl [in, optional]The system access control list.
The FwpsAleEndpointSetSecurityInfo0 function returns one of the following NTSTATUS codes.
| Return code | Description |
|---|---|
| STATUS_SUCCESS | The function succeeded. |
| Other status codes | An error occurred. |
FwpsAleEndpointGetSecurityInfo0