pcap file path - injected packets
(self, worker)
| 99 | return self._out_path |
| 100 | |
| 101 | def get_in_path(self, worker): |
| 102 | """pcap file path - injected packets""" |
| 103 | if worker is not None: |
| 104 | return "%s/pg%u_wrk%u_in.pcap" % (self.test.tempdir, self.pg_index, worker) |
| 105 | return "%s/pg%u_in.pcap" % (self.test.tempdir, self.pg_index) |
| 106 | |
| 107 | @property |
| 108 | def capture_cli(self): |
no outgoing calls
no test coverage detected