HomeSort by relevance Sort by last modified time
    Searched refs:ether (Results 1 - 25 of 36) sorted by null

1 2

  /external/iptables/etc/
ethertypes 14 ARP 0806 ether-arp #
25 TEB 6558 # Trans Ether Bridging [RFC1701]
  /external/scapy/scapy/contrib/
pnio_rtc.py 30 from scapy.all import Packet, bind_layers, Ether, UDP, Field, conf
141 # {(Ether.src, Ether.dst): [(start, type, config), ...]}
149 ether = pkt
150 while ether is not None and not isinstance(ether, Ether):
151 ether = ether.underlayer
152 return ether
    [all...]
  /external/iproute2/ip/
iplink_xstats.c 16 #include <netinet/ether.h>
iplink_bridge.c 16 #include <netinet/ether.h>
  /bionic/tests/
netinet_ether_test.cpp 19 #include <netinet/ether.h>
  /external/iptables/iptables/
getethertype.c 43 #include <netinet/ether.h>
nft-bridge.c 13 #include <netinet/ether.h>
  /external/ltp/testcases/network/iproute/
ip_tests.sh 50 link/ether
52 link/ether
  /external/dhcpcd-6.8.2/
ifaddrs.c 28 #include <netinet/ether.h>
  /external/iproute2/lib/
ll_types.c 37 __PF(ETHER,ether)
  /external/iproute2/testsuite/tools/
generate_nlmsg.c 12 #include <netinet/ether.h>
  /external/tcpdump/
Android.mk 62 print-ether.c \
  /external/iptables/extensions/
libarpt_mangle.c 12 #include <netinet/ether.h>
libxt_mangle.c 19 #include <netinet/ether.h>
  /external/libpcap/
nametoaddr.c 86 #include <netinet/ether.h>
314 * Static data base of ether protocol types.
  /external/tcpdump/win32/prj/
GNUmakefile 72 ../../print-ether.o \
  /kernel/tests/net/test/
ping6_test.py 185 packet = scapy.Ether(src=self._routermac, dst=self._mymac) / packet
206 ether = scapy.Ether(packet)
207 if ether.type == net_test.ETH_P_IPV6:
208 self.IPv6Packet(ether.payload)
209 elif ether.type == net_test.ETH_P_IP:
210 self.IPv4Packet(ether.payload)
multinetwork_base.py 246 ra = (scapy.Ether(src=macaddr, dst="33:33:00:00:00:01") /
537 packet = scapy.Ether(src=routermac, dst=mymac) / ip_packet
556 ether = scapy.Ether(packet)
559 if include_multicast or not int(ether.dst.split(":")[0], 16) & 0x1:
560 packets.append(ether.payload)
  /frameworks/base/tests/net/java/com/android/server/connectivity/
IpConnectivityMetricsTest.java 623 void wakeupEvent(String iface, int uid, int ether, int ip, byte[] mac, String srcIp,
626 mNetdListener.onWakeupEvent(prefix, uid, ether, ip, mac, srcIp, dstIp, sport, dport, now);
NetdEventListenerServiceTest.java 492 void wakeupEvent(String iface, int uid, int ether, int ip, byte[] mac, String srcIp,
495 mService.onWakeupEvent(prefix, uid, ether, ip, mac, srcIp, dstIp, sport, dport, now);
  /external/toybox/toys/pending/
arping.c 32 #include <netinet/ether.h>
  /frameworks/base/core/jni/
android_net_NetUtils.cpp 29 #include <netinet/ether.h>
  /external/scapy/scapy/layers/
lltd.py 21 from scapy.layers.l2 import Ether
94 isinstance(self.underlayer, Ether):
105 if isinstance(self.underlayer, Ether):
769 bind_layers(Ether, LLTD, type=0x88d9)
798 >>> sniff(filter="ether proto 0x88d9", prn=p.parse)
l2.py 78 res = srp1(Ether(dst=ETHER_BROADCAST)/ARP(op="who-has", pdst=ip),
148 class Ether(Packet):
157 if isinstance(other,Ether):
189 return Ether
201 conf.neighbor.register_l3(Ether, LLC, l2_register_l3)
231 aliastypes = [ Ether ]
253 if isinstance(self.underlayer, Ether):
254 return self.underlayer.sprintf("802.1q %Ether.src% > %Ether.dst% (%Dot1Q.type%) vlan %Dot1Q.vlan%")
259 conf.neighbor.register_l3(Ether, Dot1Q, l2_register_l3
    [all...]
  /system/netd/server/
WakeupControllerTest.cpp 48 const std::string& prefix, int uid, int ether, int ipNextHeader,

Completed in 699 milliseconds

1 2