Searched refs:IPerror (Results 1 – 4 of 4) sorted by relevance
/external/scapy/scapy/modules/ |
D | nmap.py | 27 from scapy.layers.inet import IP, TCP, UDP, ICMP, UDPerror, IPerror 116 res["RID"] = "E" if snd.id == rcv[IPerror].id else "F" 117 res["RIPCK"] = "E" if snd.chksum == rcv[IPerror].chksum else ( 118 "0" if rcv[IPerror].chksum == 0 else "F"
|
/external/scapy/test/ |
D | nmap.uts | 14 d = nmap_udppacket_sig(IP()/UDP(), IP(raw(IP()/ICMP(type=3, code=2)/IPerror()/UDPerror())))
|
D | regression.uts | 9157 answer = IP(dst="192.168.0.254", src="192.168.0.2", ttl=1)/ICMP()/IPerror(dst="192.168.0.1", src="1… 9160 answer = IP(dst="192.168.0.254", src="192.168.0.2")/ICMP(type=11)/IPerror(dst="192.168.0.1", src="1… 9164 answer = IP(dst="192.168.0.254", src="192.168.0.2")/ICMP(type=11)/IPerror(dst="192.168.0.1", src="1… 9169 answer = IP(dst="192.168.0.254", src="192.168.0.2")/ICMP(type=11)/IPerror(dst="192.168.0.1", src="1… 9188 …IP(dst="192.168.0.254", src=ip)/ICMP(type=11)/IPerror(dst="192.168.0.1", src="192.168.0.254", ttl=… 9224 "ttl-zero-during-transit / IPerror / TCPerror / "
|
/external/scapy/scapy/layers/ |
D | inet.py | 714 return IPerror 727 class IPerror(IP): class 805 bind_layers( IPerror, IPerror, frag=0, proto=4) 806 bind_layers( IPerror, ICMPerror, frag=0, proto=1) 807 bind_layers( IPerror, TCPerror, frag=0, proto=6) 808 bind_layers( IPerror, UDPerror, frag=0, proto=17) 1685 if not isinstance(ans.payload.payload, IPerror):
|