aboutsummaryrefslogtreecommitdiffstats
path: root/libmproxy/dump.py
diff options
context:
space:
mode:
Diffstat (limited to 'libmproxy/dump.py')
-rw-r--r--libmproxy/dump.py11
1 files changed, 7 insertions, 4 deletions
diff --git a/libmproxy/dump.py b/libmproxy/dump.py
index 73ecc54d..5cbb7389 100644
--- a/libmproxy/dump.py
+++ b/libmproxy/dump.py
@@ -6,16 +6,17 @@ class DumpError(Exception): pass
class Options(object):
__slots__ = [
+ "anticache",
+ "client_replay",
+ "keepserving",
"kill",
"request_script",
"response_script",
+ "rheaders",
"server_replay",
- "client_replay",
+ "stickycookie",
"verbosity",
"wfile",
- "rheaders",
- "stickycookie",
- "keepserving",
]
def __init__(self, **kwargs):
for k, v in kwargs.items():
@@ -83,6 +84,8 @@ class DumpMaster(flow.FlowMaster):
not options.keepserving
)
+ self.anticache = options.anticache
+
def _readflow(self, path):
path = os.path.expanduser(path)
try: