FwpsAleEndpointGetSecurityInfo0 function (fwpsk.h)

The FwpsAleEndpointGetSecurityInfo0 function retrieves security information about the application layer enforcement (ALE) endpoint enumeration session.

Note  FwpsAleEndpointGetSecurityInfo0 is a specific version of FwpsAleEndpointGetSecurityInfo. See WFP Version-Independent Names and Targeting Specific Versions of Windows for more information.
 

Syntax

NTSTATUS FwpsAleEndpointGetSecurityInfo0(
  [in]  HANDLE               engineHandle,
  [in]  SECURITY_INFORMATION securityInfo,
  [out] PSID                 *sidOwner,
  [out] PSID                 *sidGroup,
  [out] PACL                 *dacl,
  [out] PACL                 *sacl,
  [out] PSECURITY_DESCRIPTOR *securityDescriptor
);

Parameters

[in] engineHandle

A handle for an open session with the filter engine. This handle is obtained when a session is opened by calling FwpmEngineOpen0.

[in] securityInfo

A set of security information flags. For more information, see the SECURITY_INFORMATION description in the Installable File Systems driver documentation.

[out] sidOwner

The security identifier of the security owner.

[out] sidGroup

The security identifier of the security group.

[out] dacl

The discretionary access control list.

[out] sacl

The system access control list.

[out] securityDescriptor

The security descriptor structure.

Return value

The FwpsAleEndpointGetSecurityInfo0 function returns one of the following NTSTATUS codes.

Return code Description
STATUS_SUCCESS
The function succeeded.
Other status codes
An error occurred.

Requirements

Requirement Value
Minimum supported client Available starting with Windows 7.
Target Platform Universal
Header fwpsk.h (include Fwpsk.h)
Library Fwpkclnt.lib
IRQL PASSIVE_LEVEL

See also

FwpsAleEndpointEnum0

FwpsAleEndpointGetById0

FwpsAleEndpointSetSecurityInfo0