// ndis.h
typedef struct _NDIS_PD_FILTER_COUNTER {
ULONG64 PacketsMatched;
ULONG64 BytesMatched;
} NDIS_PD_FILTER_COUNTER;
View the official Windows Driver Kit DDI referenceNo description available.
This structure is used to hold counter information for a filter.
PacketsMatchedThe amount of packets that match.
BytesMatchedThe amount of bytes that match.