aboutsummaryrefslogtreecommitdiffstats
path: root/libmproxy
diff options
context:
space:
mode:
authorThomas Kriechbaumer <thomas@kriechbaumer.name>2015-08-20 20:31:01 +0200
committerThomas Kriechbaumer <thomas@kriechbaumer.name>2015-08-20 20:31:01 +0200
commit55cfd259dc8264ca9bca166b50b0d3dc7ab71451 (patch)
treeb7fcdd372eab7066aaf93ed0aed7ec625c3eb3a2 /libmproxy
parent5746472426d3928497e9c8f85664a46598a044af (diff)
downloadmitmproxy-55cfd259dc8264ca9bca166b50b0d3dc7ab71451.tar.gz
mitmproxy-55cfd259dc8264ca9bca166b50b0d3dc7ab71451.tar.bz2
mitmproxy-55cfd259dc8264ca9bca166b50b0d3dc7ab71451.zip
http2: simplify protocol-related code
Diffstat (limited to 'libmproxy')
-rw-r--r--libmproxy/protocol2/http.py17
1 files changed, 8 insertions, 9 deletions
diff --git a/libmproxy/protocol2/http.py b/libmproxy/protocol2/http.py
index e5a434f2..a2dfc428 100644
--- a/libmproxy/protocol2/http.py
+++ b/libmproxy/protocol2/http.py
@@ -34,10 +34,10 @@ class Http1Layer(Layer):
body_size_limit=self.config.body_size_limit
)
- def read_from_server(self, method):
+ def read_from_server(self, request):
return HTTPResponse.from_protocol(
self.server_protocol,
- method,
+ request.method,
body_size_limit=self.config.body_size_limit,
include_body=False,
)
@@ -77,13 +77,15 @@ class Http2Layer(Layer):
body_size_limit=self.config.body_size_limit
)
- def read_from_server(self, method):
- return HTTPResponse.from_protocol(
+ def read_from_server(self, request):
+ response = HTTPResponse.from_protocol(
self.server_protocol,
- method,
+ request.method,
body_size_limit=self.config.body_size_limit,
include_body=False,
)
+ response.stream_id = request.stream_id
+ return response
def send_to_client(self, message):
# TODO: implement flow control and WINDOW_UPDATE frames
@@ -351,7 +353,7 @@ class HttpLayer(Layer):
def get_response_from_server(self, flow):
def get_response():
self.send_to_server(flow.request)
- flow.response = self.read_from_server(flow.request.method)
+ flow.response = self.read_from_server(flow.request)
try:
get_response()
@@ -374,9 +376,6 @@ class HttpLayer(Layer):
self.reconnect()
get_response()
- if isinstance(self.server_protocol, http2.HTTP2Protocol):
- flow.response.stream_id = flow.request.stream_id
-
# call the appropriate script hook - this is an opportunity for an
# inline script to set flow.stream = True
flow = self.channel.ask("responseheaders", flow)