Searched refs:ICMPv6ND_RA (Results 1 – 3 of 3) sorted by relevance
22 scapy.ICMPv6ND_RA(routerlifetime=lifetime))
1982 class ICMPv6ND_RA(_ICMPv6NDGuessPayload, _ICMPv6): class3751 if not (Ether in req and IPv6 in req and ICMPv6ND_RA in req):3764 if req[ICMPv6ND_RA].routerlifetime == 0:3788 rep /= ICMPv6ND_RA(prf=1, routerlifetime=0)
2289 + Test ICMPv6ND_RA() class - ICMPv6 Type 134 Code 02291 = ICMPv6ND_RA - Basic Instantiation 2292 raw(ICMPv6ND_RA()) == b'\x86\x00\x00\x00\x00\x08\x07\x08\x00\x00\x00\x00\x00\x00\x00\x00'2294 = ICMPv6ND_RA - Basic instantiation with empty dst in IPv6 underlayer2295 raw(IPv6(src="2001:db8::1")/ICMPv6ND_RA()) == b'`\x00\x00\x00\x00\x10:\xff \x01\r\xb8\x00\x00\x00\x…2297 = ICMPv6ND_RA - Basic dissection2298 a=ICMPv6ND_RA(b'\x86\x00\x00\x00\x00\x08\x07\x08\x00\x00\x00\x00\x00\x00\x00\x00')2301 = ICMPv6ND_RA - Basic instantiation with empty dst in IPv6 underlayer2303 isinstance(a, IPv6) and a.nh == 58 and a.hlim == 255 and isinstance(a.payload, ICMPv6ND_RA) and a.p…2305 = ICMPv6ND_RA - Answers[all …]