HomeSort by relevance Sort by last modified time
    Searched refs:MPLS (Results 1 - 10 of 10) sorted by null

  /external/scapy/scapy/contrib/
mpls.py 15 # scapy.contrib.description = MPLS
25 class MPLS(Packet):
26 name = "MPLS"
35 return MPLS
43 bind_layers(Ether, MPLS, type=0x8847)
44 bind_layers(GRE, MPLS, proto=0x8847)
45 bind_layers(MPLS, MPLS, s=0)
nsh.py 28 from scapy.contrib.mpls import MPLS
73 5: 'MPLS'}),
97 bind_layers(NSH, MPLS, {'NextProto': 5}, NextProto=5)
icmp_extensions.py 27 from scapy.contrib.mpls import MPLS
114 name = 'ICMP Extension Object - MPLS (RFC4950)'
119 PacketListField('stack', [], MPLS,
  /external/libpcap/
grammar.h 117 MPLS = 327,
239 #define MPLS 327
grammar.y 331 %token VLAN MPLS
551 | MPLS pnum { $$ = gen_mpls(cstate, $2); }
552 | MPLS { $$ = gen_mpls(cstate, -1); }
grammar.c 435 MPLS = 327,
557 #define MPLS 327
994 "VLAN", "MPLS", "PPPOED", "PPPOES", "GENEVE", "ISO", "ESIS", "CLNP",
    [all...]
scanner.l 349 mpls return MPLS;
scanner.c     [all...]
pcap.c     [all...]
  /external/linux-kselftest/tools/testing/selftests/bpf/
bpf_flow.c 18 #include <linux/mpls.h>
34 MPLS,
105 bpf_tail_call(skb, &jmp_table, MPLS);
324 PROG(MPLS)(struct __sk_buff *skb)
326 struct mpls_label *mpls, _mpls; local
328 mpls = bpf_flow_dissect_get_header(skb, sizeof(*mpls), &_mpls);
329 if (!mpls)

Completed in 258 milliseconds