diff options
author | Maximilian Hils <git@maximilianhils.com> | 2013-12-16 22:10:06 +0100 |
---|---|---|
committer | Maximilian Hils <git@maximilianhils.com> | 2013-12-16 22:10:06 +0100 |
commit | e643759ef653908dadffd82a832eb67f5223cd71 (patch) | |
tree | 54812017b647bc64e844546bbde12a5b04ff1298 /test/scripts/all.py | |
parent | 6ec2e6f24f2e64854e80d81c04ae44c094486821 (diff) | |
parent | afff1f17340b2a62de168ec42655ed7e5779c3c4 (diff) | |
download | mitmproxy-e643759ef653908dadffd82a832eb67f5223cd71.tar.gz mitmproxy-e643759ef653908dadffd82a832eb67f5223cd71.tar.bz2 mitmproxy-e643759ef653908dadffd82a832eb67f5223cd71.zip |
merge smurfix/fix2, add serverconnect hook docs, adjust tests
Diffstat (limited to 'test/scripts/all.py')
-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 e6da7e51..7d30d757 100644 --- a/test/scripts/all.py +++ b/test/scripts/all.py @@ -3,6 +3,10 @@ def clientconnect(ctx, cc): ctx.log("XCLIENTCONNECT") log.append("clientconnect") +def serverconnect(ctx, cc): + ctx.log("XSERVERCONNECT") + log.append("serverconnect") + def request(ctx, r): ctx.log("XREQUEST") log.append("request") |