diff options
author | Maximilian Hils <git@maximilianhils.com> | 2016-07-08 19:57:57 -0700 |
---|---|---|
committer | Maximilian Hils <git@maximilianhils.com> | 2016-07-08 19:57:57 -0700 |
commit | 5d2b7c52f9c33e84be5c4330b09b0f2a5ad869e2 (patch) | |
tree | 01d2f83583f0a47706def85b9ed82ed045d5f4b6 /examples/stub.py | |
parent | 7c67faa8da39f428d1860bccae806137943b66a6 (diff) | |
download | mitmproxy-5d2b7c52f9c33e84be5c4330b09b0f2a5ad869e2.tar.gz mitmproxy-5d2b7c52f9c33e84be5c4330b09b0f2a5ad869e2.tar.bz2 mitmproxy-5d2b7c52f9c33e84be5c4330b09b0f2a5ad869e2.zip |
move script context to mitmproxy.ctx
Diffstat (limited to 'examples/stub.py')
-rw-r--r-- | examples/stub.py | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/examples/stub.py b/examples/stub.py index a4f16699..10b34283 100644 --- a/examples/stub.py +++ b/examples/stub.py @@ -8,7 +8,7 @@ def start(): """ Called once on script startup, before any other events. """ - mitmproxy.log("start") + mitmproxy.ctx.log("start") def clientconnect(root_layer): @@ -16,14 +16,14 @@ def clientconnect(root_layer): Called when a client initiates a connection to the proxy. Note that a connection can correspond to multiple HTTP requests """ - mitmproxy.log("clientconnect") + mitmproxy.ctx.log("clientconnect") def request(flow): """ Called when a client request has been received. """ - mitmproxy.log("request") + mitmproxy.ctx.log("request") def serverconnect(server_conn): @@ -31,7 +31,7 @@ def serverconnect(server_conn): Called when the proxy initiates a connection to the target server. Note that a connection can correspond to multiple HTTP requests """ - mitmproxy.log("serverconnect") + mitmproxy.ctx.log("serverconnect") def responseheaders(flow): @@ -40,14 +40,14 @@ def responseheaders(flow): but the response body has not been processed yet. Can be used to tell mitmproxy to stream the response. """ - mitmproxy.log("responseheaders") + mitmproxy.ctx.log("responseheaders") def response(flow): """ Called when a server response has been received. """ - mitmproxy.log("response") + mitmproxy.ctx.log("response") def error(flow): @@ -56,25 +56,25 @@ def error(flow): interrupted connections. This is distinct from a valid server HTTP error response, which is simply a response with an HTTP error code. """ - mitmproxy.log("error") + mitmproxy.ctx.log("error") def serverdisconnect(server_conn): """ Called when the proxy closes the connection to the target server. """ - mitmproxy.log("serverdisconnect") + mitmproxy.ctx.log("serverdisconnect") def clientdisconnect(root_layer): """ Called when a client disconnects from the proxy. """ - mitmproxy.log("clientdisconnect") + mitmproxy.ctx.log("clientdisconnect") def done(): """ Called once on script shutdown, after any other events. """ - mitmproxy.log("done") + mitmproxy.ctx.log("done") |