diff options
Diffstat (limited to 'doc-src/scripting')
-rw-r--r-- | doc-src/scripting/inlinescripts.html | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/doc-src/scripting/inlinescripts.html b/doc-src/scripting/inlinescripts.html index c9e188fc..7ab1c101 100644 --- a/doc-src/scripting/inlinescripts.html +++ b/doc-src/scripting/inlinescripts.html @@ -36,6 +36,11 @@ Called when a client initiates a connection to the proxy. Note that a connection can correspond to multiple HTTP requests. +### serverconnect(ScriptContext, ServerConnection) + +Called when the proxy initiates a connection to the target server. Note that +a connection can correspond to multiple HTTP requests. + ### request(ScriptContext, Flow) Called when a client request has been received. The __Flow__ object is @@ -123,6 +128,13 @@ using pydoc (which is installed with Python by default), like this: </pre> +## Running scripts in parallel + +We have a single flow primitive, so when a script is handling something, other requests block. +While that's a very desirable behaviour under some circumstances, scripts can be run threaded by using the <code>libmproxy.script.concurrent</code> decorator. + +$!example("examples/nonblocking.py")!$ + ## Running scripts on saved flows Sometimes, we want to run a script on __Flow__ objects that are already |