diff options
author | Maximilian Hils <git@maximilianhils.com> | 2014-07-20 10:57:51 +0200 |
---|---|---|
committer | Maximilian Hils <git@maximilianhils.com> | 2014-07-20 10:57:51 +0200 |
commit | 0ba5a2cf194ebbba15e6ef013f0456feb0ffd9fc (patch) | |
tree | 95a718ac3cfdaa2ff5e4ef63628303051eddee7d /test/scripts | |
parent | 71ba7089e23c107b7835b7122a05d829a326bdf5 (diff) | |
parent | 560e23af092ab566e75060346ebde739ac07f179 (diff) | |
download | mitmproxy-0ba5a2cf194ebbba15e6ef013f0456feb0ffd9fc.tar.gz mitmproxy-0ba5a2cf194ebbba15e6ef013f0456feb0ffd9fc.tar.bz2 mitmproxy-0ba5a2cf194ebbba15e6ef013f0456feb0ffd9fc.zip |
Merge branch 'stream' of https://github.com/bradleypeabody/mitmproxy into stream
Diffstat (limited to 'test/scripts')
-rw-r--r-- | test/scripts/all.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/scripts/all.py b/test/scripts/all.py index 7d30d757..15a5fc02 100644 --- a/test/scripts/all.py +++ b/test/scripts/all.py @@ -15,6 +15,10 @@ def response(ctx, r): ctx.log("XRESPONSE") log.append("response") +def responseheaders(ctx, r): + ctx.log("XRESPONSEHEADERS") + log.append("responseheaders") + def clientdisconnect(ctx, cc): ctx.log("XCLIENTDISCONNECT") log.append("clientdisconnect") |