def __init__(self): AbstractCommunication.__init__(self) self.socket_filename = "/var/spool/ulteo/ovd.sock" if Config.infos.has_key("server_socket_filename"): self.socket_filename = Config.infos["server_socket_filename"] self.queue = Queue() self.threads = []
def __init__(self, dialogInterfaces): AbstractCommunication.__init__(self, dialogInterfaces) self.webserver = None self.tcp_port = Config.SLAVE_SERVER_PORT
def __init__(self): AbstractCommunication.__init__(self) self.tcp_port = Config.SLAVE_SERVER_PORT self.handler = HttpRequestHandler(self)
def __init__(self): AbstractCommunication.__init__(self) self.webserver = None self.tcp_port = Config.SLAVE_SERVER_PORT
def __init__(self, dialogInterfaces): AbstractCommunication.__init__(self, dialogInterfaces) self.tcp_port = Config.SLAVE_SERVER_PORT self.handler = HttpRequestHandler(self)