OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:veth
(Results
1 - 3
of
3
) sorted by null
/external/iproute2/ip/
link_veth.c
2
* link_veth.c
veth
driver module
15
#include <linux/
veth
.h>
22
printf("Usage: ip link <options> type
veth
"
61
.id = "
veth
",
iplink.c
75
fprintf(stderr, "TYPE := { vlan |
veth
| vcan | dummy | ifb | macvlan | can }\n");
/external/kernel-headers/original/linux/
if_vlan.h
229
struct vlan_ethhdr *
veth
;
local
247
veth
= (struct vlan_ethhdr *)skb_push(skb, VLAN_HLEN);
253
veth
->h_vlan_proto = __constant_htons(ETH_P_8021Q);
256
veth
->h_vlan_TCI = htons(tag);
311
struct vlan_ethhdr *
veth
= (struct vlan_ethhdr *)skb->data;
local
313
if (
veth
->h_vlan_proto != __constant_htons(ETH_P_8021Q)) {
317
*tag = ntohs(
veth
->h_vlan_TCI);
Completed in 259 milliseconds