aboutsummaryrefslogtreecommitdiffstats
path: root/examples/proxapp.py
diff options
context:
space:
mode:
authorMaximilian Hils <git@maximilianhils.com>2016-07-08 19:57:57 -0700
committerMaximilian Hils <git@maximilianhils.com>2016-07-08 19:57:57 -0700
commit5d2b7c52f9c33e84be5c4330b09b0f2a5ad869e2 (patch)
tree01d2f83583f0a47706def85b9ed82ed045d5f4b6 /examples/proxapp.py
parent7c67faa8da39f428d1860bccae806137943b66a6 (diff)
downloadmitmproxy-5d2b7c52f9c33e84be5c4330b09b0f2a5ad869e2.tar.gz
mitmproxy-5d2b7c52f9c33e84be5c4330b09b0f2a5ad869e2.tar.bz2
mitmproxy-5d2b7c52f9c33e84be5c4330b09b0f2a5ad869e2.zip
move script context to mitmproxy.ctx
Diffstat (limited to 'examples/proxapp.py')
-rw-r--r--examples/proxapp.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/proxapp.py b/examples/proxapp.py
index ddc38544..2935b587 100644
--- a/examples/proxapp.py
+++ b/examples/proxapp.py
@@ -17,9 +17,9 @@ def hello_world():
# Register the app using the magic domain "proxapp" on port 80. Requests to
# this domain and port combination will now be routed to the WSGI app instance.
def start():
- mitmproxy.master.apps.add(app, "proxapp", 80)
+ mitmproxy.ctx.master.apps.add(app, "proxapp", 80)
# SSL works too, but the magic domain needs to be resolvable from the mitmproxy machine due to mitmproxy's design.
# mitmproxy will connect to said domain and use serve its certificate (unless --no-upstream-cert is set)
# but won't send any data.
- mitmproxy.master.apps.add(app, "example.com", 443)
+ mitmproxy.ctx.master.apps.add(app, "example.com", 443)