summaryrefslogtreecommitdiffstats
path: root/module/remote/ClientHandler.py
diff options
context:
space:
mode:
authorGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2009-05-31 21:43:41 +0200
committerGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2009-05-31 21:43:41 +0200
commit1193b9c68caba33f19baa4265349a89ff5a777a6 (patch)
tree63350f4f44b08a66cdc2be201174f7ec76ab96d3 /module/remote/ClientHandler.py
parentgui socket finally works (diff)
downloadpyload-1193b9c68caba33f19baa4265349a89ff5a777a6.tar.xz
socket interface example
Diffstat (limited to 'module/remote/ClientHandler.py')
-rw-r--r--module/remote/ClientHandler.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/module/remote/ClientHandler.py b/module/remote/ClientHandler.py
index 6f60d5176..6f208a3f5 100644
--- a/module/remote/ClientHandler.py
+++ b/module/remote/ClientHandler.py
@@ -19,5 +19,6 @@ class ClientHandler(RequestHandler):
def proceed(self, data):
obj = self.decrypt(data)
- #evaluate object
+ if obj.function == "get_downloads":
+ print obj.response
return self.encrypt(obj)