Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 309a29b5965a0b2f36b3e245213eb43300a89ac2 13 lines 224 B view raw
1/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ 2#ifndef __NET_VETH_H_ 3#define __NET_VETH_H_ 4 5enum { 6 VETH_INFO_UNSPEC, 7 VETH_INFO_PEER, 8 9 __VETH_INFO_MAX 10#define VETH_INFO_MAX (__VETH_INFO_MAX - 1) 11}; 12 13#endif