示例#1
0
 def __init__(self, conn, opts, password="", stop_cb=None, cracked_cb=None):
     CommandConnectClient.__init__(self, conn, opts)
     self.password = password
     self.password_file = "fakeone"
     self.ended = False
     self.stop_cb = stop_cb
     self.cracked_cb = cracked_cb
示例#2
0
 def __init__(self, conn, opts, password="", stop_cb=None, cracked_cb=None):
     CommandConnectClient.__init__(self, conn, opts)
     self.password = password
     self.password_file = "fakeone"
     self.ended = False
     self.stop_cb = stop_cb
     self.cracked_cb = cracked_cb
示例#3
0
    def __init__(self, conn, opts):
        CommandConnectClient.__init__(self, conn, opts)

        def check_kicked_out(*args):
            log.error("BUG: illegal command did not get us kicked out: we are still connected!")
            self.quit()

        gobject.timeout_add(5 * 1000, check_kicked_out)
示例#4
0
    def __init__(self, conn, opts):
        CommandConnectClient.__init__(self, conn, opts)

        def check_connection_timeout(*args):
            log.error("BUG: timeout did not fire: we are still connected!")
            self.quit()

        gobject.timeout_add(20 * 1000, check_connection_timeout)
示例#5
0
 def __init__(self, conn, opts):
     CommandConnectClient.__init__(self, conn, opts)
     def check_kicked_out(*args):
         if not self._protocol._closed:
             self.bug("illegal command did not get us kicked out: we are still connected!")
         else:
             self.quit()
     gobject.timeout_add(5*1000, check_kicked_out)
示例#6
0
 def __init__(self, conn, opts):
     CommandConnectClient.__init__(self, conn, opts)
     def check_connection_dead(*args):
         self.send("irrelevant")
     gobject.timeout_add(1000, check_connection_dead)
     def check_connection_timeout(*args):
         log.error("BUG: packet size failsafe did not fire: we are still connected!")
         self.quit()
     gobject.timeout_add(20*1000, check_connection_timeout)
示例#7
0
    def __init__(self, conn, opts):
        CommandConnectClient.__init__(self, conn, opts)

        def check_kicked_out(*args):
            log.error(
                "BUG: illegal command did not get us kicked out: we are still connected!"
            )
            self.quit()

        gobject.timeout_add(5 * 1000, check_kicked_out)
 def __init__(self, conn, opts):
     CommandConnectClient.__init__(self, conn, opts)
     def check_connection_timeout(*args):
         log.error("BUG: timeout did not fire: we are still connected!")
         self.quit()
     gobject.timeout_add(20*1000, check_connection_timeout)