From 975f3e747c4dcae535f0561d3640e3eeb4e392a1 Mon Sep 17 00:00:00 2001 From: Nick Daly Date: Tue, 29 May 2012 17:47:22 -0500 Subject: [PATCH] Added stop to listener. --- ugly_hacks/santiago/protocols/https/controller.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ugly_hacks/santiago/protocols/https/controller.py b/ugly_hacks/santiago/protocols/https/controller.py index b9f46498a..b94bf16de 100644 --- a/ugly_hacks/santiago/protocols/https/controller.py +++ b/ugly_hacks/santiago/protocols/https/controller.py @@ -47,6 +47,10 @@ class Listener(SantiagoListener): """Starts the listener.""" pass + def stop(self): + """Shuts down the listener.""" + pass + @cherrypy.expose def index(self, **kwargs): """Receive an incoming Santiago request from another Santiago client."""