Example #1
0
 def __init__(self, host_address=7100, ip_address='localhost', udpAddress = 7102):
     ConnectionManager.__init__(self, host_address=host_address, ip_address=ip_address)
     asyncore.dispatcher.__init__(self)
     self.serverStarted(udpAddress)
Example #2
0
 def __init__(self, port_address=7101, host_address=7100, ip_address='localhost'):
     ConnectionManager.__init__(self, port_address=port_address, host_address=host_address, ip_address=ip_address)
     SSLHandler.add_certificate(self.socket, ip_address, port_address) # TODO: SSL!
Example #3
0
 def __init__(self, host_address=7100, ip_address="localhost"):
     ConnectionManager.__init__(self, host_address=host_address, ip_address=ip_address)
Example #4
0
 def __init__(self, port_address=7100):
     ConnectionManager.__init__(self, port_address=port_address)
     MDParticipant.__init__(self, base_class=self)