Home
last modified time | relevance | path

Searched refs:ICMPv6ND_RA (Results 1 – 3 of 3) sorted by relevance

/external/autotest/server/cros/packet_generation/
Dsendra.py22 scapy.ICMPv6ND_RA(routerlifetime=lifetime))
/external/scapy/scapy/layers/
Dinet6.py1982 class ICMPv6ND_RA(_ICMPv6NDGuessPayload, _ICMPv6): class
3751 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)
/external/scapy/test/
Dregression.uts2289 + Test ICMPv6ND_RA() class - ICMPv6 Type 134 Code 0
2291 = 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 underlayer
2295 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 dissection
2298 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 underlayer
2303 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 …]