|
|
@@ -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): |
|
|
|