FWPM_NET_EVENT_CAPABILITY_ALLOW0 structure (fwpmtypes.h)

The FWPM_NET_EVENT_CAPABILITY_ALLOW0 structure contains information about network traffic allowed in relation to an app container network capability.. The specified app container network capability grants access to network resources, and the specified filter identifier enforces allowing access.

Syntax

typedef struct FWPM_NET_EVENT_CAPABILITY_ALLOW0_ {
  FWPM_APPC_NETWORK_CAPABILITY_TYPE networkCapabilityId;
  UINT64                            filterId;
  BOOL                              isLoopback;
} FWPM_NET_EVENT_CAPABILITY_ALLOW0;

Members

networkCapabilityId

Type: FWPM_APPC_NETWORK_CAPABILITY_TYPE

The specific app container network capability allowing this traffic.

filterId

Type: UINT64

A LUID identifying the WFP filter enforcing the allowed access intended by the capability in networkCapabilityId.

isLoopback

Type: BOOL

True if the packet originated from (or was heading to) the loopback adapter; otherwise, false.

Requirements

Requirement Value
Minimum supported client Windows 8 [desktop apps only]
Minimum supported server Windows Server 2012 [desktop apps only]
Header fwpmtypes.h

See also

FWPM_APPC_NETWORK_CAPABILITY_TYPE

FWPM_NET_EVENT_CAPABILITY_DROP0