Syntax:
@in(PROTOCOL_FIELD_ID, CONSTANT_VALUE1 [, CONSTANT_VALUE2,
..., CONSTANT_VALUEn])
Arguments:
PROTOCOL_FIELD_ID | A protocol field identifier in the form <PROTOCOL_ID>:<FIELD_ID>. |
CONSTANT_VALUEx | A constant value to compare for a match with the data represented by
PROTOCOL_FIELD_ID.
This argument may be represented as:
|
Returns:
True if any of the constant values is equal to the data
represented by the specified protocol, else false.
Example:
The following example tests whether any of the constants 'My
MAC Adddress', FF:FF:FF:FF:FF:FF, 0x123AF872B810, or 1234567890
are
contained within the data field TOK:DLC.DA.
@in(TOK:DLC.DA, 'My MAC Adddress', FF:FF:FF:FF:FF:FF, 0x123AF872B810, 1234567890)