PF_FILTER_STATS
[PF_FILTER_STATS 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 PF_FILTER_STATS structure contains a description of a particular filter and the number of packets filtered by the filter.
typedef struct _PF_FILTER_STATS {
DWORD dwNumPacketsFiltered;
PF_FILTER_DESCRIPTOR info;
} PF_FILTER_STATS,
*PPF_FILTER_STATS;
Members
- dwNumPacketsFiltered
Specifies the number of packets filtered by the filter specified by the info member. - info
Specifies a PF_FILTER_DESCRIPTOR that describes a particular filter.
Remarks
The PF_INTERFACE_STATS structure contains an array of PF_FILTER_STATS structures. Each element of the PF_FILTER_STATS array corresponds to a filter associated with the PF_INTERFACE_STATS interface.
Requirements
Server | Requires Windows Server 2003 or Windows 2000 Server. |
Header | Declared in Fltdefs.h. |
See Also
PF_FILTER_DESCRIPTOR
PF_INTERFACE_STATS
PfGetInterfaceStatistics