diff options
author | Aldo Cortesi <aldo@nullcube.com> | 2016-11-13 18:45:27 +1300 |
---|---|---|
committer | Aldo Cortesi <aldo@nullcube.com> | 2016-11-13 19:59:59 +1300 |
commit | 9b08279c7c3384f716b66329fefbe97a368189a2 (patch) | |
tree | cd96f4d7e6f7e7c7373f60513e51d83785ce418b /docs/scripting | |
parent | dc88b7d1102e0bf2d0634fe22682ce4e66ebf772 (diff) | |
download | mitmproxy-9b08279c7c3384f716b66329fefbe97a368189a2.tar.gz mitmproxy-9b08279c7c3384f716b66329fefbe97a368189a2.tar.bz2 mitmproxy-9b08279c7c3384f716b66329fefbe97a368189a2.zip |
addons.proxyauth: out with the old, in with the new
- Strip out old auth mechanisms, and enable addon
- Disable web app auth for now - this should just use the Tornado auth stuff
Diffstat (limited to 'docs/scripting')
-rw-r--r-- | docs/scripting/events.rst | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/docs/scripting/events.rst b/docs/scripting/events.rst index a5721403..5f560e58 100644 --- a/docs/scripting/events.rst +++ b/docs/scripting/events.rst @@ -99,12 +99,11 @@ HTTP Events :header-rows: 0 * - .. py:function:: http_connect(flow) - - Called when we receive an HTTP CONNECT request. Setting a non 2xx - response on the flow will return the response to the client abort the - connection. CONNECT requests and responses do not generate the usual - HTTP handler events. CONNECT requests are only valid in regular and - upstream proxy modes. + response on the flow will return the response to the client abort the + connection. CONNECT requests and responses do not generate the usual + HTTP handler events. CONNECT requests are only valid in regular and + upstream proxy modes. *flow* A ``models.HTTPFlow`` object. The flow is guaranteed to have |