Home
last modified time | relevance | path

Searched refs:is_or (Results 1 – 2 of 2) sorted by relevance

/freebsd/tests/atf_python/sys/netpfil/ipfw/
H A Dinsns.py73 def __init__(self, opcode, is_or, is_not, arg1): argument
80 self.is_or = is_or
121 is_or = (insn.length & 0x40) != 0
123 return cls(opcode=insn.opcode, is_or=is_or, is_not=is_not, arg1=insn.arg1)
136 is_or = ""
137 if self.is_or:
138 is_or = " [OR]\\"
150 is_or,
189 def __init__(self, opcode, is_or=False, is_not=False, arg1=0): argument
190 super().__init__(opcode, is_or=is_or, is_not=is_not, arg1=arg1)
[all …]
/freebsd/sbin/ipfw/tests/
H A Dtest_add_rule.py167 InsnIp(IpFwOpcode.O_IP_SRC, ip="1.2.3.4", is_or=True),