Lines Matching refs:destination_address
55 def check_address_query(command_msg, source_node, destination_address): argument
66 if isinstance(destination_address, bytearray):
67 destination_address = bytes(destination_address)
69 …assert (ipv6.ip_address(destination_address) == command_msg.ipv6_packet.ipv6_header.destination_ad…
86 …ssert (ipv6.ip_address(destination_rloc) == command_msg.ipv6_packet.ipv6_header.destination_address
90 def check_address_error_notification(command_msg, source_node, destination_address): argument
103 if isinstance(destination_address, bytearray):
104 destination_address = bytes(destination_address)
106 …assert (ipv6.ip_address(destination_address) == command_msg.ipv6_packet.ipv6_header.destination_ad…
108 … str(ipv6.ip_address(destination_address)) + ", but the destination_address in command msg is: " +
109 str(command_msg.ipv6_packet.ipv6_header.destination_address))
130 …ssert (ipv6.ip_address(destination_rloc) == command_msg.ipv6_packet.ipv6_header.destination_address
212 …(ipv6.ip_address(destination_link_local) == command_msg.ipv6_packet.ipv6_header.destination_address
699 if msg.ipv6_packet.ipv6_header.destination_address == dest: