2.2.90 FW_MATCH_TYPE

This enumeration specifies how a match key is matched against an object.

 typedef  enum _tag_FW_MATCH_TYPE
 {
   FW_MATCH_TYPE_TRAFFIC_MATCH = 0,
   FW_MATCH_TYPE_EQUAL = 1,
   FW_MATCH_TYPE_MAX = 2
 } FW_MATCH_TYPE;

FW_MATCH_TYPE_TRAFFIC_MATCH:  The match operation evaluates to TRUE for all objects that match the network traffic that is represented by the value matched against. This symbolic constant has a value of 0.

FW_MATCH_TYPE_EQUAL:  The match operation evaluates to TRUE for all objects that have a value equal to the one matched against. This symbolic constant has a value of 1.

FW_MATCH_TYPE_MAX:  This value and values that exceed this value are not valid and MUST NOT be used. It is defined for simplicity in writing IDL definitions and code. This symbolic constant has a value of 2.