mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-22 15:37:45 +00:00
now mitmproxy supports multiple saved flows files too. also fixed server_play_back start with mitmproxy (missing parameter)
This commit is contained in:
parent
9695377b28
commit
30213d6370
@ -496,11 +496,13 @@ class ConsoleMaster(flow.FlowMaster):
|
||||
self.eventlog = not self.eventlog
|
||||
self.view_flowlist()
|
||||
|
||||
def _readflow(self, path):
|
||||
path = os.path.expanduser(path)
|
||||
def _readflow(self, paths):
|
||||
try:
|
||||
f = file(path, "rb")
|
||||
flows = list(flow.FlowReader(f).stream())
|
||||
flows = []
|
||||
for path in paths:
|
||||
path = os.path.expanduser(path)
|
||||
f = file(path, "rb")
|
||||
flows.extend(list(flow.FlowReader(f).stream()))
|
||||
except (IOError, flow.FlowReadError), v:
|
||||
return True, v.strerror
|
||||
return False, flows
|
||||
@ -521,7 +523,7 @@ class ConsoleMaster(flow.FlowMaster):
|
||||
ret,
|
||||
self.killextra, self.rheaders,
|
||||
False, self.nopop,
|
||||
self.options.replay_ignore_params, self.options.replay_ignore_content
|
||||
self.options.replay_ignore_params, self.options.replay_ignore_content, self.options.replay_ignore_payload_params
|
||||
)
|
||||
|
||||
def spawn_editor(self, data):
|
||||
|
Loading…
Reference in New Issue
Block a user