Lines Matching refs:ICMPv6NIReplyIPv6
2942 t = ICMPv6NIReplyIPv6(flags="T")
2943 a = ICMPv6NIReplyIPv6(flags="A")
2944 c = ICMPv6NIReplyIPv6(flags="C")
2945 l = ICMPv6NIReplyIPv6(flags="L")
2946 s = ICMPv6NIReplyIPv6(flags="S")
2947 g = ICMPv6NIReplyIPv6(flags="G")
2948 allflags = ICMPv6NIReplyIPv6(flags="TALCLSG")
2971 a = ICMPv6NIReplyIPv6()
2973 c = ICMPv6NIReplyIPv6()
3057 = ICMPv6NIReplyIPv6 - dispatch
3058 s = raw(IPv6(src="2001:db8::1", dst="2001:db8::2")/ICMPv6NIReplyIPv6())
3060 isinstance(p.payload, ICMPv6NIReplyIPv6)
3146 + Test Node Information Query - ICMPv6NIReplyIPv6
3148 = ICMPv6NIReplyIPv6 - one IPv6 address without TTL (internal)
3149 a=ICMPv6NIReplyIPv6(data="2001:db8::1").getfieldval("data")
3152 = ICMPv6NIReplyIPv6 - one IPv6 address without TTL
3153 ICMPv6NIReplyIPv6(data="2001:db8::1").data == [(0, '2001:db8::1')]
3155 = ICMPv6NIReplyIPv6 - one IPv6 address without TTL (as a list) (internal)
3156 a=ICMPv6NIReplyIPv6(data=["2001:db8::1"]).getfieldval("data")
3159 = ICMPv6NIReplyIPv6 - one IPv6 address without TTL (as a list)
3160 ICMPv6NIReplyIPv6(data=["2001:db8::1"]).data == [(0, '2001:db8::1')]
3162 = ICMPv6NIReplyIPv6 - one IPv6 address with TTL (internal)
3163 a=ICMPv6NIReplyIPv6(data=[(0, "2001:db8::1")]).getfieldval("data")
3166 = ICMPv6NIReplyIPv6 - one IPv6 address with TTL
3167 ICMPv6NIReplyIPv6(data=[(0, "2001:db8::1")]).data == [(0, '2001:db8::1')]
3169 = ICMPv6NIReplyIPv6 - two IPv6 addresses as a list of rawings (without TTL) (internal)
3170 a=ICMPv6NIReplyIPv6(data=["2001:db8::1", "2001:db8::2"]).getfieldval("data")
3173 = ICMPv6NIReplyIPv6 - two IPv6 addresses as a list of rawings (without TTL)
3174 ICMPv6NIReplyIPv6(data=["2001:db8::1", "2001:db8::2"]).data == [(0, '2001:db8::1'), (0, '2001:db8::…
3176 = ICMPv6NIReplyIPv6 - two IPv6 addresses as a list (first with ttl, second without) (internal)
3177 a=ICMPv6NIReplyIPv6(data=[(42, "2001:db8::1"), "2001:db8::2"]).getfieldval("data")
3180 = ICMPv6NIReplyIPv6 - two IPv6 addresses as a list (first with ttl, second without)
3181 ICMPv6NIReplyIPv6(data=[(42, "2001:db8::1"), "2001:db8::2"]).data == [(42, "2001:db8::1"), (0, "200…
3183 = ICMPv6NIReplyIPv6 - build & dissection
3185 s = raw(IPv6()/ICMPv6NIReplyIPv6(data="2001:db8::1"))
3187 ICMPv6NIReplyIPv6 in p and p.data == [(0, '2001:db8::1')]