aboutsummaryrefslogtreecommitdiffstats
path: root/mitmproxy/options.py
diff options
context:
space:
mode:
authorMaximilian Hils <git@maximilianhils.com>2017-07-29 20:39:07 +0200
committerMaximilian Hils <git@maximilianhils.com>2017-07-29 21:50:45 +0200
commitb2f7995a038a5eff2e74f8326c0e8fe45155a049 (patch)
treea4cc2bb8cf1eb561a3a8e74557da78f4ca902f82 /mitmproxy/options.py
parent9ffd42edeacb19c3961840289bb25eaeca5991a5 (diff)
downloadmitmproxy-b2f7995a038a5eff2e74f8326c0e8fe45155a049.tar.gz
mitmproxy-b2f7995a038a5eff2e74f8326c0e8fe45155a049.tar.bz2
mitmproxy-b2f7995a038a5eff2e74f8326c0e8fe45155a049.zip
move web options into their own addon
Diffstat (limited to 'mitmproxy/options.py')
-rw-r--r--mitmproxy/options.py18
1 files changed, 0 insertions, 18 deletions
diff --git a/mitmproxy/options.py b/mitmproxy/options.py
index 8a01cf40..7df7736d 100644
--- a/mitmproxy/options.py
+++ b/mitmproxy/options.py
@@ -437,24 +437,6 @@ class Options(optmanager.OptManager):
"Limit which flows are displayed."
)
- # Web options
- self.add_option(
- "web_open_browser", bool, True,
- "Start a browser."
- )
- self.add_option(
- "web_debug", bool, False,
- "Mitmweb debugging."
- )
- self.add_option(
- "web_port", int, 8081,
- "Mitmweb port."
- )
- self.add_option(
- "web_iface", str, "127.0.0.1",
- "Mitmweb interface."
- )
-
# Dump options
self.add_option(
"flow_detail", int, 1,