diff options
Diffstat (limited to 'libmproxy/console')
-rw-r--r-- | libmproxy/console/__init__.py | 5 | ||||
-rw-r--r-- | libmproxy/console/flowlist.py | 6 |
2 files changed, 8 insertions, 3 deletions
diff --git a/libmproxy/console/__init__.py b/libmproxy/console/__init__.py index 0db06832..cc8a0c1f 100644 --- a/libmproxy/console/__init__.py +++ b/libmproxy/console/__init__.py @@ -528,7 +528,10 @@ class ConsoleMaster(flow.FlowMaster): flows, self.killextra, self.rheaders, False, self.nopop, - self.options.replay_ignore_params, self.options.replay_ignore_content, self.options.replay_ignore_payload_params + self.options.replay_ignore_params, + self.options.replay_ignore_content, + self.options.replay_ignore_payload_params, + self.options.replay_ignore_host ) def spawn_editor(self, data): diff --git a/libmproxy/console/flowlist.py b/libmproxy/console/flowlist.py index 9e7c6d69..2a6a98c8 100644 --- a/libmproxy/console/flowlist.py +++ b/libmproxy/console/flowlist.py @@ -126,7 +126,8 @@ class ConnectionItem(common.WWrap): self.master.killextra, self.master.rheaders, False, self.master.nopop, self.master.options.replay_ignore_params, self.master.options.replay_ignore_content, - self.master.options.replay_ignore_payload_params + self.master.options.replay_ignore_payload_params, + self.master.options.replay_ignore_host ) elif k == "t": self.master.start_server_playback( @@ -134,7 +135,8 @@ class ConnectionItem(common.WWrap): self.master.killextra, self.master.rheaders, False, self.master.nopop, self.master.options.replay_ignore_params, self.master.options.replay_ignore_content, - self.master.options.replay_ignore_payload_params + self.master.options.replay_ignore_payload_params, + self.master.options.replay_ignore_host ) else: self.master.path_prompt( |