diff options
author | Thomas Keck <thomas@macbook.macbook> | 2010-03-13 14:00:42 +0100 |
---|---|---|
committer | Thomas Keck <thomas@macbook.macbook> | 2010-03-13 14:00:42 +0100 |
commit | a0297c212e5a9a4c2c478e538c23ddd0e96ac56e (patch) | |
tree | 68889de4a1e23048d546478ae25a0138136203ed /proxy.py | |
parent | 619dca5ac40418af00b9a4acb954b56701d74299 (diff) | |
download | magicproxy-a0297c212e5a9a4c2c478e538c23ddd0e96ac56e.tar.gz magicproxy-a0297c212e5a9a4c2c478e538c23ddd0e96ac56e.zip |
First mockup of an gui
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) |