aboutsummaryrefslogtreecommitdiffstats
path: root/libmproxy/utils.py
diff options
context:
space:
mode:
authorThomas Kriechbaumer <thomas@kriechbaumer.name>2016-01-24 23:16:50 +0100
committerThomas Kriechbaumer <thomas@kriechbaumer.name>2016-02-04 09:52:03 +0100
commita99ef584ad184658199d6ba83c73ed173f8ac0d0 (patch)
tree89230ecd7d26a4809bf4755af81ac200c397e350 /libmproxy/utils.py
parent4de9cbb61ee0bedd882518e72a1605ca999ccf97 (diff)
downloadmitmproxy-a99ef584ad184658199d6ba83c73ed173f8ac0d0.tar.gz
mitmproxy-a99ef584ad184658199d6ba83c73ed173f8ac0d0.tar.bz2
mitmproxy-a99ef584ad184658199d6ba83c73ed173f8ac0d0.zip
reuse frame reading snippet
Diffstat (limited to 'libmproxy/utils.py')
-rw-r--r--libmproxy/utils.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/libmproxy/utils.py b/libmproxy/utils.py
index a697a637..94dbbca8 100644
--- a/libmproxy/utils.py
+++ b/libmproxy/utils.py
@@ -173,3 +173,9 @@ def safe_subn(pattern, repl, target, *args, **kwargs):
need a better solution that is aware of the actual content ecoding.
"""
return re.subn(str(pattern), str(repl), target, *args, **kwargs)
+
+def http2_read_frame(rfile):
+ field = rfile.peek(3)
+ length = int(field.encode('hex'), 16)
+ raw_frame = rfile.safe_read(9 + length)
+ return raw_frame