Home
last modified time | relevance | path

Searched refs:ICMPv6ND_RS (Results 1 – 2 of 2) sorted by relevance

/external/scapy/scapy/layers/
Dinet6.py1974 class ICMPv6ND_RS(_ICMPv6NDGuessPayload, _ICMPv6): class
2003 return isinstance(other, ICMPv6ND_RS)
3872 if not (Ether in req and IPv6 in req and ICMPv6ND_RS in req):
/external/scapy/test/
Dregression.uts2270 + Test ICMPv6ND_RS() class - ICMPv6 Type 133 Code 0
2272 = ICMPv6ND_RS - Basic instantiation
2273 raw(ICMPv6ND_RS()) == b'\x85\x00\x00\x00\x00\x00\x00\x00'
2275 = ICMPv6ND_RS - Basic instantiation with empty dst in IPv6 underlayer
2276 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 dissection
2279 a=ICMPv6ND_RS(b'\x85\x00\x00\x00\x00\x00\x00\x00')
2282 = ICMPv6ND_RS - Basic instantiation with empty dst in IPv6 underlayer
2284 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())