aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMaximilian Hils <git@maximilianhils.com>2014-09-03 17:14:18 +0200
committerMaximilian Hils <git@maximilianhils.com>2014-09-06 01:23:07 +0200
commit6114f07f76c0f2a99004527eea68ac0a4557f345 (patch)
tree2542bb456b5b18d950f882e283bb1c523e829aff
parente9a838ae53a9388bc6695721cd2d446e750e64c6 (diff)
downloadmitmproxy-6114f07f76c0f2a99004527eea68ac0a4557f345.tar.gz
mitmproxy-6114f07f76c0f2a99004527eea68ac0a4557f345.tar.bz2
mitmproxy-6114f07f76c0f2a99004527eea68ac0a4557f345.zip
adapt pathod to netlib changes
-rw-r--r--libpathod/pathod.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/libpathod/pathod.py b/libpathod/pathod.py
index 876fb90e..150e8799 100644
--- a/libpathod/pathod.py
+++ b/libpathod/pathod.py
@@ -185,8 +185,8 @@ class PathodHandler(tcp.BaseHandler):
return False, dict(type="error", msg="Access denied: web interface disabled")
else:
self.info("app: %s %s" % (method, path))
- cc = wsgi.ClientConn(self.address())
- req = wsgi.Request(cc, "http", method, path, headers, content)
+ req = wsgi.Request("http", method, path, headers, content)
+ flow = wsgi.Flow(self.address, req)
sn = self.connection.getsockname()
a = wsgi.WSGIAdaptor(
self.server.app,
@@ -194,7 +194,7 @@ class PathodHandler(tcp.BaseHandler):
self.server.address.port,
version.NAMEVERSION
)
- a.serve(req, self.wfile)
+ a.serve(flow, self.wfile)
return True, None
def _log_bytes(self, header, data, hexdump):