MCPcopy
hub / github.com/mitmproxy/mitmproxy / resume

Method resume

mitmproxy/addons/core.py:55–62  ·  view source on GitHub ↗

Resume flows if they are intercepted.

(self, flows: Sequence[flow.Flow])

Source from the content-addressed store, hash-verified

53
54 @command.command("flow.resume")
55 def resume(self, flows: Sequence[flow.Flow]) -> None:
56 """
57 Resume flows if they are intercepted.
58 """
59 intercepted = [i for i in flows if i.intercepted]
60 for f in intercepted:
61 f.resume()
62 ctx.master.addons.trigger(hooks.UpdateHook(intercepted))
63
64 # FIXME: this will become view.mark later
65 @command.command("flow.mark")

Callers 1

test_resumeFunction · 0.95

Calls 1

triggerMethod · 0.80

Tested by 1

test_resumeFunction · 0.76