diff options
author | Thomas Kriechbaumer <thomas@kriechbaumer.name> | 2016-01-24 23:16:50 +0100 |
---|---|---|
committer | Thomas Kriechbaumer <thomas@kriechbaumer.name> | 2016-02-04 09:52:03 +0100 |
commit | a99ef584ad184658199d6ba83c73ed173f8ac0d0 (patch) | |
tree | 89230ecd7d26a4809bf4755af81ac200c397e350 /libmproxy/protocol/http2.py | |
parent | 4de9cbb61ee0bedd882518e72a1605ca999ccf97 (diff) | |
download | mitmproxy-a99ef584ad184658199d6ba83c73ed173f8ac0d0.tar.gz mitmproxy-a99ef584ad184658199d6ba83c73ed173f8ac0d0.tar.bz2 mitmproxy-a99ef584ad184658199d6ba83c73ed173f8ac0d0.zip |
reuse frame reading snippet
Diffstat (limited to 'libmproxy/protocol/http2.py')
-rw-r--r-- | libmproxy/protocol/http2.py | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/libmproxy/protocol/http2.py b/libmproxy/protocol/http2.py index a6d1b73f..ff1726ae 100644 --- a/libmproxy/protocol/http2.py +++ b/libmproxy/protocol/http2.py @@ -206,12 +206,8 @@ class Http2Layer(Layer): other_conn = self.server_conn if conn == self.client_conn.connection else self.client_conn is_server = (conn == self.server_conn.connection) - field = source_conn.rfile.peek(3) - length = int(field.encode('hex'), 16) - raw_frame = source_conn.rfile.safe_read(9 + length) - with source_conn.h2.lock: - events = source_conn.h2.receive_data(raw_frame) + events = source_conn.h2.receive_data(utils.http2_read_frame(source_conn.rfile)) source_conn.send(source_conn.h2.data_to_send()) for event in events: |