aboutsummaryrefslogtreecommitdiffstats
path: root/mitmproxy/options.py
diff options
context:
space:
mode:
authorAldo Cortesi <aldo@nullcube.com>2018-02-24 16:42:32 +1300
committerAldo Cortesi <aldo@nullcube.com>2018-02-24 16:42:32 +1300
commit93c49c47ae42a89c3c6b30988ea553df4ff19ab4 (patch)
tree4c019497c10235dd5839b9515466a9a51a0bac13 /mitmproxy/options.py
parent4fe83be63ca986754bcc9ab741c1fce3698a5053 (diff)
downloadmitmproxy-93c49c47ae42a89c3c6b30988ea553df4ff19ab4.tar.gz
mitmproxy-93c49c47ae42a89c3c6b30988ea553df4ff19ab4.tar.bz2
mitmproxy-93c49c47ae42a89c3c6b30988ea553df4ff19ab4.zip
flow_detail option to /addons/dumper
Diffstat (limited to 'mitmproxy/options.py')
-rw-r--r--mitmproxy/options.py13
1 files changed, 0 insertions, 13 deletions
diff --git a/mitmproxy/options.py b/mitmproxy/options.py
index 70d454fd..139b197f 100644
--- a/mitmproxy/options.py
+++ b/mitmproxy/options.py
@@ -58,7 +58,6 @@ class Options(optmanager.OptManager):
# because they're used by more than one addon, or because they're
# embedded in the core code somehow.
default_contentview = None # type: str
- flow_detail = None # type: int
intercept = None # type: Optional[str]
intercept_active = None # type: bool
proxyauth = None # type: Optional[str]
@@ -267,16 +266,4 @@ class Options(optmanager.OptManager):
"Limit which flows are displayed."
)
- # Dump options
- self.add_option(
- "flow_detail", int, 1,
- """
- The display detail level for flows in mitmdump: 0 (almost quiet) to 3 (very verbose).
- 0: shortened request URL, response status code, WebSocket and TCP message notifications.
- 1: full request URL with response status code
- 2: 1 + HTTP headers
- 3: 2 + full response content, content of WebSocket and TCP messages.
- """
- )
-
self.update(**kwargs)