Esempio n. 1
0
    def __init__(self):
        Thread.__init__(self)
        EM.__init__(self)

        self.daemon = True

        self.alive = True

        self.first = True
Esempio n. 2
0
    def __init__(self, host, port, rcon_password):
        Thread.__init__(self)
        EM.__init__(self)

        self.daemon = True

        self.alive = True

        self.conn = socket.socket(socket.AF_INET, socket.SOCK_STREAM)

        self.host = host
        self.port = port
        self.rcon_password = rcon_password

        self.first = True
Esempio n. 3
0
    def __init__(self, host, port, rcon_password):
        Thread.__init__(self)
        EM.__init__(self)

        self.daemon = True

        self.alive = True

        self.conn = socket.socket(socket.AF_INET, socket.SOCK_STREAM)

        self.host = host
        self.port = port
        self.rcon_password = rcon_password

        self.first = True