Searched refs:ICMPv6ND_RS (Results 1 – 2 of 2) sorted by relevance
1974 class ICMPv6ND_RS(_ICMPv6NDGuessPayload, _ICMPv6): class2003 return isinstance(other, ICMPv6ND_RS)3872 if not (Ether in req and IPv6 in req and ICMPv6ND_RS in req):
2270 + Test ICMPv6ND_RS() class - ICMPv6 Type 133 Code 02272 = ICMPv6ND_RS - Basic instantiation2273 raw(ICMPv6ND_RS()) == b'\x85\x00\x00\x00\x00\x00\x00\x00'2275 = ICMPv6ND_RS - Basic instantiation with empty dst in IPv6 underlayer2276 raw(IPv6(src="2001:db8::1")/ICMPv6ND_RS()) == b'`\x00\x00\x00\x00\x08:\xff \x01\r\xb8\x00\x00\x00\x…2278 = ICMPv6ND_RS - Basic dissection2279 a=ICMPv6ND_RS(b'\x85\x00\x00\x00\x00\x00\x00\x00')2282 = ICMPv6ND_RS - Basic instantiation with empty dst in IPv6 underlayer2284 isinstance(a, IPv6) and a.nh == 58 and a.hlim == 255 and isinstance(a.payload, ICMPv6ND_RS) and a.p…2306 assert ICMPv6ND_RA().answers(ICMPv6ND_RS())