(opts)
| 121 | |
| 122 | |
| 123 | def mitmdump(opts): |
| 124 | parser = argparse.ArgumentParser(usage="%(prog)s [options] [filter]") |
| 125 | |
| 126 | common_options(parser, opts) |
| 127 | opts.make_parser(parser, "flow_detail", metavar="LEVEL") |
| 128 | parser.add_argument( |
| 129 | "filter_args", |
| 130 | nargs="...", |
| 131 | help=""" |
| 132 | Filter expression, equivalent to setting both the view_filter |
| 133 | and save_stream_filter options. |
| 134 | """, |
| 135 | ) |
| 136 | return parser |
| 137 | |
| 138 | |
| 139 | def mitmweb(opts): |
nothing calls this directly
no test coverage detected
searching dependent graphs…