mirror of
https://github.com/vee1e/mitmproxy.git
synced 2026-09-01 18:27:18 +00:00
6 lines
194 B
Python
6 lines
194 B
Python
def responseheaders(flow):
|
|
"""
|
|
Enables streaming for all responses.
|
|
This is equivalent to passing `--set stream_large_bodies=1` to mitmproxy.
|
|
"""
|
|
flow.response.stream = True
|