diff options
author | Thomas Kriechbaumer <thomas@kriechbaumer.name> | 2015-09-29 16:23:55 +0200 |
---|---|---|
committer | Thomas Kriechbaumer <thomas@kriechbaumer.name> | 2016-02-04 09:52:01 +0100 |
commit | e9eed5e4c206e507665f5a4ff92654e969f4dd89 (patch) | |
tree | d096137dbca316a0a79e66a92d316d8817813084 /libmproxy/models | |
parent | ae4a1dd6dec9d95e450837db8937e3fb7604c121 (diff) | |
download | mitmproxy-e9eed5e4c206e507665f5a4ff92654e969f4dd89.tar.gz mitmproxy-e9eed5e4c206e507665f5a4ff92654e969f4dd89.tar.bz2 mitmproxy-e9eed5e4c206e507665f5a4ff92654e969f4dd89.zip |
--wip--
Diffstat (limited to 'libmproxy/models')
-rw-r--r-- | libmproxy/models/http.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/libmproxy/models/http.py b/libmproxy/models/http.py index e07dff69..3914440e 100644 --- a/libmproxy/models/http.py +++ b/libmproxy/models/http.py @@ -241,8 +241,6 @@ class HTTPRequest(MessageMixin, Request): timestamp_end=request.timestamp_end, form_out=(request.form_out if hasattr(request, 'form_out') else None), ) - if hasattr(request, 'stream_id'): - req.stream_id = request.stream_id return req def __hash__(self): @@ -347,8 +345,6 @@ class HTTPResponse(MessageMixin, Response): timestamp_start=response.timestamp_start, timestamp_end=response.timestamp_end, ) - if hasattr(response, 'stream_id'): - resp.stream_id = response.stream_id return resp def _refresh_cookie(self, c, delta): |