• Home
  • Raw
  • Download

Lines Matching refs:ICMPv6NIQueryIPv6

2849 + Test Node Information Query - ICMPv6NIQueryIPv6
2851 = ICMPv6NIQueryIPv6 - single label DNS name (internal)
2852 a = ICMPv6NIQueryIPv6(data="abricot")
2857 = ICMPv6NIQueryIPv6 - single label DNS name
2858 ICMPv6NIQueryIPv6(data="abricot").data == b"abricot"
2860 = ICMPv6NIQueryIPv6 - fqdn (internal)
2861 a=ICMPv6NIQueryIPv6(data="n.d.org").getfieldval("data")
2864 = ICMPv6NIQueryIPv6 - fqdn
2865 ICMPv6NIQueryIPv6(data="n.d.org").data == b"n.d.org"
2867 = ICMPv6NIQueryIPv6 - IPv6 address (internal)
2868 a=ICMPv6NIQueryIPv6(data="2001:db8::1").getfieldval("data")
2871 = ICMPv6NIQueryIPv6 - IPv6 address
2872 ICMPv6NIQueryIPv6(data="2001:db8::1").data == "2001:db8::1"
2874 = ICMPv6NIQueryIPv6 - IPv4 address (internal)
2875 a=ICMPv6NIQueryIPv6(data="169.254.253.252").getfieldval("data")
2878 = ICMPv6NIQueryIPv6 - IPv4 address
2879 ICMPv6NIQueryIPv6(data="169.254.253.252").data == '169.254.253.252'
2920 t = ICMPv6NIQueryIPv6(flags="T")
2921 a = ICMPv6NIQueryIPv6(flags="A")
2922 c = ICMPv6NIQueryIPv6(flags="C")
2923 l = ICMPv6NIQueryIPv6(flags="L")
2924 s = ICMPv6NIQueryIPv6(flags="S")
2925 g = ICMPv6NIQueryIPv6(flags="G")
2926 allflags = ICMPv6NIQueryIPv6(flags="TALCLSG")
2967 d = ICMPv6NIQueryIPv6()
2992 = ICMPv6NIQueryIPv6 - dispatch with nothing in data
2993 s = raw(IPv6(src="2001:db8::1", dst="2001:db8::2")/ICMPv6NIQueryIPv6())
2995 isinstance(p.payload, ICMPv6NIQueryIPv6)
2997 = ICMPv6NIQueryIPv6 - dispatch with IPv6 address in data
2998 s = raw(IPv6(src="2001:db8::1", dst="2001:db8::2")/ICMPv6NIQueryIPv6(data="2001::db8::1"))
3000 isinstance(p.payload, ICMPv6NIQueryIPv6)
3002 = ICMPv6NIQueryIPv6 - dispatch with IPv4 address in data
3003 s = raw(IPv6(src="2001:db8::1", dst="2001:db8::2")/ICMPv6NIQueryIPv6(data="192.168.0.1"))
3005 isinstance(p.payload, ICMPv6NIQueryIPv6)
3007 = ICMPv6NIQueryIPv6 - dispatch with name in data
3008 s = raw(IPv6(src="2001:db8::1", dst="2001:db8::2")/ICMPv6NIQueryIPv6(data="alfred"))
3010 isinstance(p.payload, ICMPv6NIQueryIPv6)