aboutsummaryrefslogtreecommitdiffstats
path: root/libmproxy/web/app.py
diff options
context:
space:
mode:
authorMaximilian Hils <git@maximilianhils.com>2014-12-09 18:18:14 +0100
committerMaximilian Hils <git@maximilianhils.com>2014-12-09 18:18:14 +0100
commit14a8d2f5b83a1ea28abbb490f6c94c43b4e1f960 (patch)
treec114643959a6223289e8287e9daaa1b65a377356 /libmproxy/web/app.py
parent096a3af273ccb309820351b466e62382f62a2c36 (diff)
downloadmitmproxy-14a8d2f5b83a1ea28abbb490f6c94c43b4e1f960.tar.gz
mitmproxy-14a8d2f5b83a1ea28abbb490f6c94c43b4e1f960.tar.bz2
mitmproxy-14a8d2f5b83a1ea28abbb490f6c94c43b4e1f960.zip
always use the app dispatcher
Diffstat (limited to 'libmproxy/web/app.py')
-rw-r--r--libmproxy/web/app.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/libmproxy/web/app.py b/libmproxy/web/app.py
index 05ca7e79..3fce9d64 100644
--- a/libmproxy/web/app.py
+++ b/libmproxy/web/app.py
@@ -49,10 +49,6 @@ class FlowClear(tornado.web.RequestHandler):
self.application.state.clear()
-class FlowUpdates(WebSocketEventBroadcaster):
- connections = set()
-
-
class ClientConnection(WebSocketEventBroadcaster):
connections = set()
@@ -65,7 +61,6 @@ class Application(tornado.web.Application):
(r"/updates", ClientConnection),
(r"/flows", Flows),
(r"/flows/clear", FlowClear),
- (r"/flows/updates", FlowUpdates),
]
settings = dict(
template_path=os.path.join(os.path.dirname(__file__), "templates"),