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
78
fprintf(stderr, "TYPE := { vlan |
veth
| vcan | dummy | ifb | macvlan | can }\n");
/external/kernel-headers/original/linux/
if_vlan.h
209
struct vlan_ethhdr *
veth
;
local
215
veth
= (struct vlan_ethhdr *)skb_push(skb, VLAN_HLEN);
222
veth
->h_vlan_proto = htons(ETH_P_8021Q);
225
veth
->h_vlan_TCI = htons(vlan_tci);
274
struct vlan_ethhdr *
veth
= (struct vlan_ethhdr *)skb->data;
local
276
if (
veth
->h_vlan_proto != htons(ETH_P_8021Q)) {
280
*vlan_tci = ntohs(
veth
->h_vlan_TCI);
Completed in 226 milliseconds