aboutsummaryrefslogtreecommitdiffstats
path: root/libmproxy/wsgi.py
diff options
context:
space:
mode:
Diffstat (limited to 'libmproxy/wsgi.py')
-rw-r--r--libmproxy/wsgi.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/libmproxy/wsgi.py b/libmproxy/wsgi.py
index 8844ea3e..9fb5f0c5 100644
--- a/libmproxy/wsgi.py
+++ b/libmproxy/wsgi.py
@@ -104,13 +104,17 @@ class WSGIAdaptor:
except Exception, v:
pass
return errs.getvalue()
-
+
class AppRegistry:
def __init__(self):
self.apps = {}
def add(self, app, domain, port):
+ """
+ Add a WSGI app to the registry, to be served for requests to the
+ specified domain, on the specified port.
+ """
self.apps[(domain, port)] = WSGIAdaptor(app, domain, port)
def get(self, request):