aboutsummaryrefslogtreecommitdiffstats
path: root/mitmproxy/options.py
diff options
context:
space:
mode:
authorMaximilian Hils <git@maximilianhils.com>2017-07-31 00:01:15 +0200
committerGitHub <noreply@github.com>2017-07-31 00:01:15 +0200
commit018668618e26723b66a7878d7892403043d8ccc6 (patch)
treedae3a55a04f3b1282eed9f046fd20e5f29107a9d /mitmproxy/options.py
parentf844c68e2ec6b9daedc376f75ae0a4e09a4ac22c (diff)
parent826513ef278739b51d4d25eefef0ab6217df74ab (diff)
downloadmitmproxy-018668618e26723b66a7878d7892403043d8ccc6.tar.gz
mitmproxy-018668618e26723b66a7878d7892403043d8ccc6.tar.bz2
mitmproxy-018668618e26723b66a7878d7892403043d8ccc6.zip
Merge pull request #2484 from mhils/options-into-own-addon
Enable tool-specific options
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 10aaee12..20151c19 100644
--- a/mitmproxy/options.py
+++ b/mitmproxy/options.py
@@ -516,24 +516,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,