diff options
author | Maximilian Hils <git@maximilianhils.com> | 2014-07-31 22:29:13 +0200 |
---|---|---|
committer | Maximilian Hils <git@maximilianhils.com> | 2014-07-31 22:29:13 +0200 |
commit | e9401a2123f416f8dd4c24bb4bbc74f297369133 (patch) | |
tree | afebf68d1091d487ef64083962992ea7b703a80e /test/scripts | |
parent | f5fb1138fdda77ec4a3bb5493479d2f56cdb0851 (diff) | |
parent | 3e3dbee936bb71e813d50937118eebff4ba23617 (diff) | |
download | mitmproxy-e9401a2123f416f8dd4c24bb4bbc74f297369133.tar.gz mitmproxy-e9401a2123f416f8dd4c24bb4bbc74f297369133.tar.bz2 mitmproxy-e9401a2123f416f8dd4c24bb4bbc74f297369133.zip |
Merge branch 'stream'
Conflicts:
libmproxy/protocol/http.py
Diffstat (limited to 'test/scripts')
-rw-r--r-- | test/scripts/all.py | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/test/scripts/all.py b/test/scripts/all.py index 7d30d757..3acaf694 100644 --- a/test/scripts/all.py +++ b/test/scripts/all.py @@ -7,14 +7,18 @@ def serverconnect(ctx, cc): ctx.log("XSERVERCONNECT") log.append("serverconnect") -def request(ctx, r): +def request(ctx, f): ctx.log("XREQUEST") log.append("request") -def response(ctx, r): +def response(ctx, f): ctx.log("XRESPONSE") log.append("response") +def responseheaders(ctx, f): + ctx.log("XRESPONSEHEADERS") + log.append("responseheaders") + def clientdisconnect(ctx, cc): ctx.log("XCLIENTDISCONNECT") log.append("clientdisconnect") |