aboutsummaryrefslogtreecommitdiffstats
path: root/mitmproxy/options.py
diff options
context:
space:
mode:
authorAldo Cortesi <aldo@nullcube.com>2018-02-24 15:28:43 +1300
committerAldo Cortesi <aldo@nullcube.com>2018-02-24 15:28:43 +1300
commit12633adeb9cbe3a81df2f6dfd9b739eae26bdcba (patch)
tree43b266fbdc6e6aae904aef67fc6ea32596f44500 /mitmproxy/options.py
parent144b559b468ac2c67e0d79fae8754ae3385f1958 (diff)
downloadmitmproxy-12633adeb9cbe3a81df2f6dfd9b739eae26bdcba.tar.gz
mitmproxy-12633adeb9cbe3a81df2f6dfd9b739eae26bdcba.tar.bz2
mitmproxy-12633adeb9cbe3a81df2f6dfd9b739eae26bdcba.zip
addon options: readfile, save, script
Diffstat (limited to 'mitmproxy/options.py')
-rw-r--r--mitmproxy/options.py22
1 files changed, 0 insertions, 22 deletions
diff --git a/mitmproxy/options.py b/mitmproxy/options.py
index 6db2b907..e42ff0e9 100644
--- a/mitmproxy/options.py
+++ b/mitmproxy/options.py
@@ -67,10 +67,6 @@ class Options(optmanager.OptManager):
view_filter = None # type: Optional[str]
# FIXME: Options that should be uncomplicated to migrate to addons
- rfile = None # type: Optional[str]
- save_stream_file = None # type: Optional[str]
- save_stream_filter = None # type: Optional[str]
- scripts = None # type: Sequence[str]
setheaders = None # type: Sequence[str]
stickyauth = None # type: Optional[str]
stickycookie = None # type: Optional[str]
@@ -91,16 +87,6 @@ class Options(optmanager.OptManager):
"Start a proxy server. Enabled by default."
)
self.add_option(
- "rfile", Optional[str], None,
- "Read flows from file."
- )
- self.add_option(
- "scripts", Sequence[str], [],
- """
- Execute a script.
- """
- )
- self.add_option(
"showhost", bool, False,
"Use the Host header to construct URLs for display."
)
@@ -144,14 +130,6 @@ class Options(optmanager.OptManager):
"The default content view mode.",
choices = [i.name.lower() for i in contentviews.views]
)
- self.add_option(
- "save_stream_file", Optional[str], None,
- "Stream flows to file as they arrive. Prefix path with + to append."
- )
- self.add_option(
- "save_stream_filter", Optional[str], None,
- "Filter which flows are written to file."
- )
# Proxy options
self.add_option(