Exemplo n.º 1
0
    def __init__(self, config, name=None):
        self.logger = logging.getLogger(__name__)

        Drain.__init__(self, name=name)

        self.config = config

        self.logger.info("Probe request parser initialised")
Exemplo n.º 2
0
    def __init__(self, config, name=None):
        self.logger = logging.getLogger(__name__)

        Drain.__init__(self, name=name)

        self._config = config
        self._cregex = self._config.compiled_essid_regex

        self.logger.info("Probe request filter initialised")
Exemplo n.º 3
0
 def __init__(self, f, name=None):
     Drain.__init__(self, name=name)
     self.f = f
Exemplo n.º 4
0
 def __init__(self, msg, name=None):
     Drain.__init__(self, name=name)
     self.msg = msg
Exemplo n.º 5
0
 def __init__(self, ip="127.0.0.1", port=1234):
     Drain.__init__(self)
     self.ip = ip
     self.port = port
Exemplo n.º 6
0
 def __init__(self, start_state=True, name=None):
     Drain.__init__(self, name=name)
     self.low = start_state
Exemplo n.º 7
0
 def __init__(self, start_state=True, name=None):
     Drain.__init__(self, name=name)
     self.opened = start_state
     self.q = Queue()
Exemplo n.º 8
0
 def __init__(self, f, name=None):
     Drain.__init__(self, name=name)
     self.f = f
Exemplo n.º 9
0
 def __init__(self, ip="127.0.0.1", port=1234):
     # type: (str, int) -> None
     Drain.__init__(self)
     self.ip = ip
     self.port = port
Exemplo n.º 10
0
 def __init__(self, ip="127.0.0.1", port=1234):
     Drain.__init__(self)
     self.ip = ip
     self.port = port
Exemplo n.º 11
0
 def __init__(self, low_type=None, high_type=None, name=None):
     Drain.__init__(self, name=name)
     self.low_type = low_type
     self.high_type = high_type
Exemplo n.º 12
0
 def __init__(self, start_state=True, name=None):
     # type: (bool, Optional[Any]) -> None
     Drain.__init__(self, name=name)
     self.low = start_state
Exemplo n.º 13
0
 def __init__(self, start_state=True, name=None):
     # type: (bool, Optional[Any]) -> None
     Drain.__init__(self, name=name)
     self.opened = start_state
     self.q = Queue()
Exemplo n.º 14
0
 def __init__(self, f, name=None):
     # type: (Callable[..., None], Optional[str]) -> None
     Drain.__init__(self, name=name)
     self.f = f
Exemplo n.º 15
0
 def __init__(self, msg, name=None):
     # type: (str, Optional[Any]) -> None
     Drain.__init__(self, name=name)
     self.msg = msg
Exemplo n.º 16
0
 def __init__(self, start_state=True, name=None):
     Drain.__init__(self, name=name)
     self.opened = start_state
     self.q = Queue()
Exemplo n.º 17
0
 def __init__(self, start_state=True, name=None):
     Drain.__init__(self, name=name)
     self.low = start_state
Exemplo n.º 18
0
 def __init__(self, msg, name=None):
     Drain.__init__(self, name=name)
     self.msg = msg