diff options
Diffstat (limited to 'proxy.py')
-rwxr-xr-x | proxy.py | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -217,6 +217,11 @@ class HTTPProxyServer(asyncore.dispatcher): self.bind(("", 8080)) self.listen(5) + def shutdown(self): + #TODO Hier Proxy sauber beenden + #self.channel.close_when_done() + sys.exit() + def handle_accept(self): conn, addr = self.accept() HTTPChannel(self, conn, addr) |