Browse Source

add dummy entries for the connectionmanager... I don't think

I've seen anyone use it..

[git-p4: depot-paths = "//depot/": change = 1216]
replace/b43bf02ddeddd088c0e6b94974ca1a46562eb3db
John-Mark Gurney 16 years ago
parent
commit
cde6a22b83
1 changed files with 14 additions and 1 deletions
  1. +14
    -1
      ConnectionManager.py

+ 14
- 1
ConnectionManager.py View File

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


Loading…
Cancel
Save