| 98 | |
| 99 | |
| 100 | class Expect: |
| 101 | def __init__( |
| 102 | self, interface: VppPGInterface, expected_count: int, filter_out_fn=is_ipv6_misc |
| 103 | ): |
| 104 | self.interface = interface |
| 105 | self.expected_count = expected_count |
| 106 | self.filter_out_fn = filter_out_fn |
| 107 | |
| 108 | |
| 109 | class Capture: |
no outgoing calls