aboutsummaryrefslogtreecommitdiffstats
path: root/libmproxy/flow.py
diff options
context:
space:
mode:
Diffstat (limited to 'libmproxy/flow.py')
-rw-r--r--libmproxy/flow.py7
1 files changed, 1 insertions, 6 deletions
diff --git a/libmproxy/flow.py b/libmproxy/flow.py
index e791055f..9edb9eab 100644
--- a/libmproxy/flow.py
+++ b/libmproxy/flow.py
@@ -315,12 +315,7 @@ class FlowMaster(controller.Master):
f = self.state.add_response(r)
if not f:
r.ack()
- else:
- if f.match(self.stickycookie):
- hid = (f.request.host, f.request.port)
- if f.response.headers.has_key("set-cookie"):
- self.stickyhosts[hid] = f.response.headers["set-cookie"]
- self.process_flow(f, r)
+ return f
class FlowWriter: