diff options
author | Aldo Cortesi <aldo@corte.si> | 2016-07-15 16:48:01 +1200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-07-15 16:48:01 +1200 |
commit | 64e16f5112669a31f86183be640eeee3a47c2961 (patch) | |
tree | 2e8ecc38f022c2b302d5ce67fd282dab45941fd9 /examples/stub.py | |
parent | e051928f26afbc58c01d7854b62f8bfb0d4ed5ee (diff) | |
parent | c7d0850d8f697915b183f4fafd5ede7df2245569 (diff) | |
download | mitmproxy-64e16f5112669a31f86183be640eeee3a47c2961.tar.gz mitmproxy-64e16f5112669a31f86183be640eeee3a47c2961.tar.bz2 mitmproxy-64e16f5112669a31f86183be640eeee3a47c2961.zip |
Merge pull request #1356 from cortesi/script
Scripts to addon
Diffstat (limited to 'examples/stub.py')
-rw-r--r-- | examples/stub.py | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/examples/stub.py b/examples/stub.py index 10b34283..e5b4a39a 100644 --- a/examples/stub.py +++ b/examples/stub.py @@ -6,11 +6,18 @@ import mitmproxy def start(): """ - Called once on script startup, before any other events. + Called once on script startup before any other events """ mitmproxy.ctx.log("start") +def configure(options): + """ + Called once on script startup before any other events, and whenever options changes. + """ + mitmproxy.ctx.log("configure") + + def clientconnect(root_layer): """ Called when a client initiates a connection to the proxy. Note that a |