(self)
| 90 | return service_names |
| 91 | |
| 92 | def wrap_mitmproxy(self): |
| 93 | with self.wrap_proxy(): |
| 94 | cmd = ["mitmweb" if self.use_mitmweb else "mitmproxy", "-p", str(self.port)] |
| 95 | if self.extra_arguments: |
| 96 | cmd.extend(self.extra_arguments) |
| 97 | subprocess.check_call(cmd) |
| 98 | |
| 99 | def wrap_honeyproxy(self): |
| 100 | with self.wrap_proxy(): |
no test coverage detected