From 12984f149cab1308b97b5ae1bdbe375787057e7e Mon Sep 17 00:00:00 2001 From: Maximilian Hils Date: Thu, 17 Sep 2015 02:40:08 +0200 Subject: move body assembly to netlib --- libmproxy/protocol/http.py | 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-) (limited to 'libmproxy/protocol') diff --git a/libmproxy/protocol/http.py b/libmproxy/protocol/http.py index baccec8c..53609f26 100644 --- a/libmproxy/protocol/http.py +++ b/libmproxy/protocol/http.py @@ -91,21 +91,12 @@ class Http1Layer(_StreamingHttpLayer): return http1.read_body(self.server_conn.rfile, expected_size, self.config.body_size_limit) def send_response_headers(self, response): - raw = http1.assemble_response_head(response, preserve_transfer_encoding=True) + raw = http1.assemble_response_head(response) self.client_conn.wfile.write(raw) self.client_conn.wfile.flush() def send_response_body(self, response, chunks): - if b"chunked" in response.headers.get(b"transfer-encoding", b"").lower(): - # TODO: Move this into netlib.http.http1 - chunks = itertools.chain( - ( - "{:x}\r\n{}\r\n".format(len(chunk), chunk) - for chunk in chunks if chunk - ), - ("0\r\n\r\n",) - ) - for chunk in chunks: + for chunk in http1.assemble_body(response.headers, chunks): self.client_conn.wfile.write(chunk) self.client_conn.wfile.flush() -- cgit v1.2.3