Searched refs:Dot3 (Results 1 – 7 of 7) sorted by relevance
/external/scapy/scapy/contrib/ |
D | isis.uts | 12 p = Dot3()/LLC()/ISIS_CommonHdr()/ISIS_P2P_Hello() 23 p = Dot3(dst="09:00:2b:00:00:05",src="00:00:00:aa:00:8c")/LLC()/ISIS_CommonHdr()/ISIS_P2P_Hello( 33 p = Dot3(dst="09:00:2b:00:00:05",src="00:00:00:aa:00:8c")/LLC()/ISIS_CommonHdr()/ISIS_L2_LSP( 75 p = Dot3(dst="09:00:2b:00:00:05",src="00:00:00:aa:00:8c")/LLC()/ISIS_CommonHdr()/ISIS_L2_LSP(
|
D | dtp.py | 37 from scapy.layers.l2 import SNAP,Dot3,LLC 126 …p = Dot3(src=mymac, dst="01:00:0c:cc:cc:cc")/LLC()/SNAP()/DTP(tlvlist=[DTPDomain(),DTPStatus(),DTP…
|
D | chdlc.py | 49 bind_layers( CHDLC, Dot3, proto=0x6558)
|
/external/scapy/scapy/layers/ |
D | l2.py | 167 return Dot3 171 class Dot3(Packet): class 180 if isinstance(other,Dot3): 202 conf.neighbor.register_l3(Dot3, LLC, l2_register_l3) 226 conf.neighbor.register_l3(Dot3, SNAP, l2_register_l3) 415 bind_layers( Dot3, LLC, ) 449 conf.l2types.register_layer2num(ARPHDR_ETHER, Dot3)
|
D | inet.py | 826 conf.neighbor.register_l3(Dot3, IP, inet_register_l3)
|
/external/rust/crates/syn/src/ |
D | token.rs | 725 "..." pub struct Dot3/3 /// `...` 844 [...] => { $crate::token::Dot3 };
|
/external/scapy/test/ |
D | regression.uts | 1100 (sendp if isinstance(pkt, (Ether, Dot3)) else send)(pkt) 9053 assert isinstance(Dot3(raw(Ether())),Ether) 9054 assert isinstance(Ether(raw(Dot3())),Dot3) 9057 assert isinstance(a,Dot3) 9061 a = Dot3(b'\xff\xff\xff\xff\xff\xff\x00\x00\x00\x00\x00\x00\x90\x00')
|