def __init__(self, data: ContikiPacket):
     Event.__init__(self, data)
     logging.debug(
         'BRIDGE:Asking for forward decision for packet "{}"'.format(
             data.get_contiki_format()))
 def __init__(self, data: ContikiPacket):
     Event.__init__(self, data)
     logging.debug('BRIDGE:Packet send to serial event')
 def __init__(self, data: dict):
     Event.__init__(self, data)
     logging.debug(
         'BRIDGE:Sending response to ICMPv6 neighbour solicitation for address "{}"'
         .format(data['target_ip']))
 def __init__(self, data: dict):
     Event.__init__(self, data)
     logging.debug('BRIDGE:Received ICMPv6 NA for ip"{}"'.format(
         data['src_l2_addr']))
示例#5
0
 def __init__(self, data: dict):
     Event.__init__(self, data)
     logging.debug("BRIDGE: new packet in buffer")
 def __init__(self, data: NodeAddress):
     Event.__init__(self, data)
     logging.info('BRIDGE:refreshed node address "{}"'.format(data))
示例#7
0
 def __init__(self):
     Event.__init__(self, None)
示例#8
0
 def __init__(self, data: int):
     Event.__init__(self, data)
     logging.info('CONTIKI: sets node mode to "{}"'.format(data))
示例#9
0
 def __init__(self, data: dict):
     Event.__init__(self, data)
     logging.debug('CONTIKI: sending response "{}" to path id: "{}"'.format(
         data["response"], data['question_id']))
示例#10
0
 def __init__(self, data: dict):
     Event.__init__(self, data)
     logging.debug(
         'BRIDGE: contiki needs wants to use wifi for target host "{}"'.
         format(data['ip_addr']))
示例#11
0
 def __init__(self, data: str):
     Event.__init__(self, data)
     logging.info(
         'BRIDGE: contiki uses global IPv6 address "{}"'.format(data))
示例#12
0
 def __init__(self, data: ContikiPacket):
     Event.__init__(self, data)
     logging.debug('BRIDGE:incoming packet to send')
示例#13
0
 def __init__(self, line: str):
     Event.__init__(self, line)
     logging.info('CONTIKI: contiki device is booting')