Lines Matching refs:ICMPv6NIQueryIPv4
2884 + Test Node Information Query - ICMPv6NIQueryIPv4
2886 = ICMPv6NIQueryIPv4 - single label DNS name (internal)
2887 a=ICMPv6NIQueryIPv4(data="abricot").getfieldval("data")
2890 = ICMPv6NIQueryIPv4 - single label DNS name
2891 ICMPv6NIQueryIPv4(data="abricot").data == b"abricot"
2893 = ICMPv6NIQueryIPv4 - fqdn (internal)
2894 a=ICMPv6NIQueryIPv4(data="n.d.org").getfieldval("data")
2897 = ICMPv6NIQueryIPv4 - fqdn
2898 ICMPv6NIQueryIPv4(data="n.d.org").data == b"n.d.org"
2900 = ICMPv6NIQueryIPv4 - IPv6 address (internal)
2901 a=ICMPv6NIQueryIPv4(data="2001:db8::1").getfieldval("data")
2904 = ICMPv6NIQueryIPv4 - IPv6 address
2905 ICMPv6NIQueryIPv4(data="2001:db8::1").data == "2001:db8::1"
2907 = ICMPv6NIQueryIPv4 - IPv4 address (internal)
2908 a=ICMPv6NIQueryIPv4(data="169.254.253.252").getfieldval("data")
2911 = ICMPv6NIQueryIPv4 - IPv4 address
2912 ICMPv6NIQueryIPv4(data="169.254.253.252").data == '169.254.253.252'
2966 c = ICMPv6NIQueryIPv4()
3032 = ICMPv6NIQueryIPv4 - dispatch with nothing in data
3033 s = raw(IPv6(src="2001:db8::1", dst="2001:db8::2")/ICMPv6NIQueryIPv4())
3035 isinstance(p.payload, ICMPv6NIQueryIPv4)
3037 = ICMPv6NIQueryIPv4 - dispatch with IPv6 address in data
3038 s = raw(IPv6(src="2001:db8::1", dst="2001:db8::2")/ICMPv6NIQueryIPv4(data="2001:db8::1"))
3040 isinstance(p.payload, ICMPv6NIQueryIPv4)
3042 = ICMPv6NIQueryIPv4 - dispatch with IPv6 address in data
3043 s = raw(IPv6(src="2001:db8::1", dst="2001:db8::2")/ICMPv6NIQueryIPv4(data="192.168.0.1"))
3045 isinstance(p.payload, ICMPv6NIQueryIPv4)
3047 = ICMPv6NIQueryIPv4 - dispatch with name in data
3048 s = raw(IPv6(src="2001:db8::1", dst="2001:db8::2")/ICMPv6NIQueryIPv4(data="alfred"))
3050 isinstance(p.payload, ICMPv6NIQueryIPv4)