Lines Matching refs:ICMPv6NIReplyIPv4
2974 d = ICMPv6NIReplyIPv4()
3062 = ICMPv6NIReplyIPv4 - dispatch
3063 s = raw(IPv6(src="2001:db8::1", dst="2001:db8::2")/ICMPv6NIReplyIPv4())
3065 isinstance(p.payload, ICMPv6NIReplyIPv4)
3191 + Test Node Information Query - ICMPv6NIReplyIPv4
3193 = ICMPv6NIReplyIPv4 - one IPv4 address without TTL (internal)
3194 a=ICMPv6NIReplyIPv4(data="169.254.253.252").getfieldval("data")
3197 = ICMPv6NIReplyIPv4 - one IPv4 address without TTL
3198 ICMPv6NIReplyIPv4(data="169.254.253.252").data == [(0, '169.254.253.252')]
3200 = ICMPv6NIReplyIPv4 - one IPv4 address without TTL (as a list) (internal)
3201 a=ICMPv6NIReplyIPv4(data=["169.254.253.252"]).getfieldval("data")
3204 = ICMPv6NIReplyIPv4 - one IPv4 address without TTL (as a list)
3205 ICMPv6NIReplyIPv4(data=["169.254.253.252"]).data == [(0, '169.254.253.252')]
3207 = ICMPv6NIReplyIPv4 - one IPv4 address with TTL (internal)
3208 a=ICMPv6NIReplyIPv4(data=[(0, "169.254.253.252")]).getfieldval("data")
3211 = ICMPv6NIReplyIPv4 - one IPv4 address with TTL (internal)
3212 ICMPv6NIReplyIPv4(data=[(0, "169.254.253.252")]).data == [(0, '169.254.253.252')]
3214 = ICMPv6NIReplyIPv4 - two IPv4 addresses as a list of rawings (without TTL)
3215 a=ICMPv6NIReplyIPv4(data=["169.254.253.252", "169.254.253.253"]).getfieldval("data")
3218 = ICMPv6NIReplyIPv4 - two IPv4 addresses as a list of rawings (without TTL) (internal)
3219 ICMPv6NIReplyIPv4(data=["169.254.253.252", "169.254.253.253"]).data == [(0, '169.254.253.252'), (0,…
3221 = ICMPv6NIReplyIPv4 - two IPv4 addresses as a list (first with ttl, second without)
3222 a=ICMPv6NIReplyIPv4(data=[(42, "169.254.253.252"), "169.254.253.253"]).getfieldval("data")
3225 = ICMPv6NIReplyIPv4 - two IPv4 addresses as a list (first with ttl, second without) (internal)
3226 ICMPv6NIReplyIPv4(data=[(42, "169.254.253.252"), "169.254.253.253"]).data == [(42, "169.254.253.252…
3228 = ICMPv6NIReplyIPv4 - build & dissection
3230 s = raw(IPv6()/ICMPv6NIReplyIPv4(data="192.168.0.1"))
3232 ICMPv6NIReplyIPv4 in p and p.data == [(0, '192.168.0.1')]
3234 s = raw(IPv6()/ICMPv6NIReplyIPv4(data=[(2807, "192.168.0.1")]))
3236 ICMPv6NIReplyIPv4 in p and p.data == [(2807, "192.168.0.1")]