From cde6a22b8342462600763bb3da35b797c20f0a30 Mon Sep 17 00:00:00 2001 From: John-Mark Gurney Date: Tue, 28 Oct 2008 23:21:53 -0800 Subject: [PATCH] add dummy entries for the connectionmanager... I don't think I've seen anyone use it.. [git-p4: depot-paths = "//depot/": change = 1216] --- ConnectionManager.py | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/ConnectionManager.py b/ConnectionManager.py index 6f0203c..6a85986 100644 --- a/ConnectionManager.py +++ b/ConnectionManager.py @@ -10,7 +10,20 @@ from twisted.web import resource, static, soap from upnp import UPnPPublisher class ConnectionManagerControl(UPnPPublisher): - pass + def soap_GetProtocolInfo(self, *args, **kwargs): + log.msg('GetProtocolInfo(%s, %s)' % (`args`, `kwargs`)) + + def soap_PrepareForConnection(self, *args, **kwargs): + log.msg('PrepareForConnection(%s, %s)' % (`args`, `kwargs`)) + + def soap_ConnectionComplete(self, *args, **kwargs): + log.msg('ConnectionComplete(%s, %s)' % (`args`, `kwargs`)) + + def soap_GetCurrentConnectionIDs(self, *args, **kwargs): + log.msg('GetCurrentConnectionIDs(%s, %s)' % (`args`, `kwargs`)) + + def soap_GetCurrentConnectionInfo(self, *args, **kwargs): + log.msg('GetProtocolInfo(%s, %s)' % (`args`, `kwargs`)) class ConnectionManagerServer(resource.Resource): def __init__(self):