mirror of
https://github.com/zhigang1992/mitmproxy.git
synced 2026-04-08 22:40:50 +08:00
8 lines
195 B
Python
8 lines
195 B
Python
def modify(chunks):
|
|
for prefix, content, suffix in chunks:
|
|
yield prefix, content.replace("foo", "bar"), suffix
|
|
|
|
|
|
def responseheaders(context, flow):
|
|
flow.response.stream = modify
|