def __init__(self, iface, verbose=False): """Initialize the object. Keyword arguments: iface -- the name of the interface verbose -- whether to print every command run """ BaseInterface.__init__(self, iface, verbose) self.Check()
def __init__(self, iface, verbose=False): """ Initialize the object. Keyword arguments: iface -- the name of the interface verbose -- whether to print every command run """ BaseInterface.__init__(self, iface, verbose) self.Check()
def __init__(self, iface, verbose=False): """Initialise the object. Keyword arguments: iface -- the name of the interface verbose -- whether to print every command run """ BaseInterface.__init__(self, iface, verbose) self.sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM) self.Check()
def __init__(self, iface, verbose=False): """ Initialise the object. Keyword arguments: iface -- the name of the interface verbose -- whether to print every command run """ BaseInterface.__init__(self, iface, verbose) self.sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM) self.Check()
def CheckWirelessTools(self): """Check for the existence needed wireless tools""" if not WPACTRL_AVAIL: BaseInterface.CheckWirelessTools(self)