PFFORWARD_ACTION

[PFFORWARD_ACTION is available for use in the operating systems listed in the Requirements section. It may be altered or unavailable in subsequent versions. The API elements described in the Windows Filtering Platform API Reference provide similar functionality.]

The PFFORWARD_ACTION type enumerates the possible ways in which a filter interface can process a network packet.

typedef enum _PfForwardAction
{
  PF_ACTION_FORWARD = 0,
  PF_ACTION_DROP
}PFFORWARD_ACTION,  *PPFFORWARD_ACTION;

Constants

  • PF_ACTION_FORWARD
    The interface forwards the network packet.
  • PF_ACTION_DROP
    The interface discards the network packet.

Requirements

Server Requires Windows Server 2003 or Windows 2000 Server.
Header

Declared in Fltdefs.h.

See Also

PF_INTERFACE_STATS
PfTestPacket