diff options
author | Aldo Cortesi <aldo@nullcube.com> | 2011-03-06 16:02:28 +1300 |
---|---|---|
committer | Aldo Cortesi <aldo@nullcube.com> | 2011-03-06 16:02:28 +1300 |
commit | 42ffded6268401fef1f3ea0f748f92ff264674a2 (patch) | |
tree | 27207455e96e7052d9b874be352a003b57aaca28 /libmproxy | |
parent | 4f02480482cec13d36ed9b216784c3136e047192 (diff) | |
download | mitmproxy-42ffded6268401fef1f3ea0f748f92ff264674a2.tar.gz mitmproxy-42ffded6268401fef1f3ea0f748f92ff264674a2.tar.bz2 mitmproxy-42ffded6268401fef1f3ea0f748f92ff264674a2.zip |
Bump unit tests, rearrange mitmdump command-line options slightly.
Diffstat (limited to 'libmproxy')
-rw-r--r-- | libmproxy/flow.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libmproxy/flow.py b/libmproxy/flow.py index 5f1e7871..3c62169f 100644 --- a/libmproxy/flow.py +++ b/libmproxy/flow.py @@ -53,6 +53,7 @@ class ClientPlaybackState: """ if self.flows and not self.current: n = self.flows.pop(0) + n.request.client_conn = None self.current = master.handle_request(n.request) if not testing and not self.current.response: #begin nocover |