// ntddndis.h
typedef enum _NDIS_RECEIVE_FILTER_TEST {
NdisReceiveFilterTestUndefined,
NdisReceiveFilterTestEqual,
NdisReceiveFilterTestMaskEqual,
NdisReceiveFilterTestNotEqual,
NdisReceiveFilterTestMaximum
} NDIS_RECEIVE_FILTER_TEST, *PNDIS_RECEIVE_FILTER_TEST;
View the official Windows Driver Kit DDI referenceNo description available.
The NDIS_RECEIVE_FILTER_TEST enumeration identifies the type of test that the receive filter performs.
NdisReceiveFilterTestUndefinedThe type of test is not specified.
NdisReceiveFilterTestEqualThe network adapter tests the selected header field to determine whether it is equal to a specific value.
NdisReceiveFilterTestMaskEqualThe network adapter supports masking (that is, a bitwise AND) of the selected header field to determine whether the result is equal to a specific value.
NdisReceiveFilterTestNotEqualThe network adapter tests the selected header field to determine whether it is not equal to a specific value.
NdisReceiveFilterTestMaximumThe maximum value for this enumeration. This value might change in future versions of the NDIS header files and binaries.
The NDIS_RECEIVE_FILTER_TEST enumeration is used in the NDIS_RECEIVE_FILTER_FIELD_PARAMETERS structure.
NDIS_RECEIVE_FILTER_FIELD_PARAMETERS