15 lines
368 B
Python
15 lines
368 B
Python
"""
|
|
Select which responses should be streamed.
|
|
|
|
Enable response streaming for all HTTP flows.
|
|
This is equivalent to passing `--set stream_large_bodies=1` to mitmproxy.
|
|
"""
|
|
|
|
|
|
def responseheaders(flow):
|
|
"""
|
|
Enables streaming for all responses.
|
|
This is equivalent to passing `--set stream_large_bodies=1` to mitmproxy.
|
|
"""
|
|
flow.response.stream = True
|