diff options
author | Aldo Cortesi <aldo@nullcube.com> | 2013-01-18 14:50:31 +1300 |
---|---|---|
committer | Aldo Cortesi <aldo@nullcube.com> | 2013-01-18 14:50:31 +1300 |
commit | 7a79eeb143e380c44bdfb1dd3fc5056c91c0c3d4 (patch) | |
tree | 405cef98fcce003c93bf1df2553d2c245ceaa155 /doc-src | |
parent | d0ee4d60d09c607a208ae1b190e619a4f106538e (diff) | |
parent | 8c6f1dd36b955c5fa2e60e8f7f63568269fbab96 (diff) | |
download | mitmproxy-7a79eeb143e380c44bdfb1dd3fc5056c91c0c3d4.tar.gz mitmproxy-7a79eeb143e380c44bdfb1dd3fc5056c91c0c3d4.tar.bz2 mitmproxy-7a79eeb143e380c44bdfb1dd3fc5056c91c0c3d4.zip |
Merge branch 'master' of ssh.github.com:cortesi/mitmproxy
Conflicts:
test/test_server.py
Diffstat (limited to 'doc-src')
-rw-r--r-- | doc-src/scripting/inlinescripts.html | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/doc-src/scripting/inlinescripts.html b/doc-src/scripting/inlinescripts.html index 860ad9b6..7abf743c 100644 --- a/doc-src/scripting/inlinescripts.html +++ b/doc-src/scripting/inlinescripts.html @@ -1,4 +1,3 @@ - __mitmproxy__ has a powerful scripting API that allows you to modify flows on-the-fly or rewrite previously saved flows locally. @@ -22,13 +21,13 @@ response itself. Called once on startup, before any other events. -###clientconnect(ScriptContext, ClientConnect) +### clientconnect(ScriptContext, ClientConnect) Called when a client initiates a connection to the proxy. Note that a connection can correspond to multiple HTTP requests. -###request(ScriptContext, Flow) +### request(ScriptContext, Flow) Called when a client request has been received. The __Flow__ object is guaranteed to have a non-None __request__ attribute. |