Searched refs:iface_hint (Results 1 – 2 of 2) sorted by relevance
/external/scapy/scapy/ |
D | sendrecv.py | 294 def sendp(x, inter=0, loop=0, iface=None, iface_hint=None, count=None, verbose=None, realtime=None, argument 299 if iface is None and iface_hint is not None and socket is None: 300 iface = conf.route.route(iface_hint)[0] 391 def srp(x, promisc=None, iface=None, iface_hint=None, filter=None, nofilter=0, type=ETH_P_ALL, *arg… argument 403 if iface is None and iface_hint is not None: 404 iface = conf.route.route(iface_hint)[0] 568 def srpflood(x, promisc=None, filter=None, iface=None, iface_hint=None, nofilter=None, *args,**karg… argument 575 if iface is None and iface_hint is not None: 576 iface = conf.route.route(iface_hint)[0]
|
/external/scapy/scapy/layers/ |
D | l2.py | 473 sendp(p, iface_hint=target) 499 filter="arp and arp[7] = 2", timeout=timeout, iface_hint=net, **kargs) 513 …responses = srp1(Ether(dst=fake_bcast) / ARP(op="who-has", pdst=ip),type=ETH_P_ARP, iface_hint=ip,… 522 filter="arp and arp[7] = 2", timeout=timeout, iface_hint=net, **kargs)
|