The firewall starts with exact tuple bytes, not prose.
Policy starts with tuple fields
This toy firewall reads a fixed tuple: source address, destination address, protocol, and ports.
tuple bytes=13
The source address is pinned
The source address in the tuple is 192.168.1.10. The rule table will compare it with source prefixes.
src=192.168.1.10
The source port is also data
The source port is 40000. It is part of the tuple, but these pinned rules only filter the destination port.
source port=40000
Summary
The tuple gives the firewall exact fields to compare; it does not guess from prose.
tuple bytes=13