Lines Matching refs:ICMPv6EchoRequest
892 = Sending and receiving an ICMPv6EchoRequest
896 x = sr1(IPv6(dst="www.google.com")/ICMPv6EchoRequest(),timeout=3)
1726 …ExtHdrSegmentRoutingTLVIngressNode(),IPv6ExtHdrSegmentRoutingTLVEgressNode()])/ICMPv6EchoRequest())
1730 assert(ICMPv6EchoRequest in p and IPv6ExtHdrSegmentRouting in p)
1984 + Test ICMPv6EchoRequest Class
1986 = ICMPv6EchoRequest - Basic Instantiation
1987 raw(ICMPv6EchoRequest()) == b'\x80\x00\x00\x00\x00\x00\x00\x00'
1989 = ICMPv6EchoRequest - Instantiation with specific values
1990 raw(ICMPv6EchoRequest(code=0xff, cksum=0x1111, id=0x2222, seq=0x3333, data="thisissomestring")) == …
1992 = ICMPv6EchoRequest - Basic dissection
1993 a=ICMPv6EchoRequest(b'\x80\x00\x00\x00\x00\x00\x00\x00')
1996 = ICMPv6EchoRequest - Dissection with specific values
1997 a=ICMPv6EchoRequest(b'\x80\xff\x11\x11""33thisissomerawing')
2000 = ICMPv6EchoRequest - Automatic checksum computation and field overloading (build)
2001 raw(IPv6(dst="2001::cafe", src="2001::deca", hlim=64)/ICMPv6EchoRequest()) == b'`\x00\x00\x00\x00\x…
2003 = ICMPv6EchoRequest - Automatic checksum computation and field overloading (dissection)
2005 isinstance(a, IPv6) and a.nh == 58 and isinstance(a.payload, ICMPv6EchoRequest) and a.payload.cksum…
2031 isinstance(a, IPv6) and a.nh == 58 and isinstance(a.payload, ICMPv6EchoRequest) and a.payload.cksum…
2035 = ICMPv6EchoRequest and ICMPv6EchoReply - hashret() test 1
2037 a=IPv6(src="2048::cafe", dst="2047::deca")/ICMPv6EchoRequest(data="somedata")
2041 = ICMPv6EchoRequest and ICMPv6EchoReply - hashret() test 2
2043 a=IPv6(src="2048::cafe", dst="2047::deca")/ICMPv6EchoRequest(data="otherdata")
2046 = ICMPv6EchoRequest and ICMPv6EchoReply - hashret() test 3
2048 a=IPv6(src="2048::cafe", dst="2047::deca")/ICMPv6EchoRequest(id=0x6666, seq=0x8888, data="somedata")
2051 = ICMPv6EchoRequest and ICMPv6EchoReply - hashret() test 4
2053 a=IPv6(src="2048::cafe", dst="2047::deca")/ICMPv6EchoRequest(id=0x8888, seq=0x7777, data="somedata")
2056 = ICMPv6EchoRequest and ICMPv6EchoReply - answers() test 5
2058 a=IPv6(src="2048::cafe", dst="2047::deca")/ICMPv6EchoRequest(data="somedata")
2061 = ICMPv6EchoRequest and ICMPv6EchoReply - answers() test 6
2063 a=IPv6(src="2048::cafe", dst="2047::deca")/ICMPv6EchoRequest(id=0x6666, seq=0x7777, data="somedata")
2066 = ICMPv6EchoRequest and ICMPv6EchoReply - live answers() use Net6
2069 a = IPv6(dst="www.google.com")/ICMPv6EchoRequest()
2223 p = IPv6()/IPv6ExtHdrDestOpt(options=HAO(hoa="2001:db8::1"))/ICMPv6EchoRequest()
4722 …::1', src='2001:db8::2')/IPv6ExtHdrRouting(type=2, addresses=['2001:db8::3'])/ICMPv6EchoRequest()))
4727 p = IPv6()/IPv6ExtHdrRouting(addresses=["2001:db8::1", "2001:db8::2"])/ICMPv6EchoRequest()