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 v3.13-rc2 19 lines 334 B view raw
1#ifndef _NETNS_NFTABLES_H_ 2#define _NETNS_NFTABLES_H_ 3 4#include <linux/list.h> 5 6struct nft_af_info; 7 8struct netns_nftables { 9 struct list_head af_info; 10 struct list_head commit_list; 11 struct nft_af_info *ipv4; 12 struct nft_af_info *ipv6; 13 struct nft_af_info *arp; 14 struct nft_af_info *bridge; 15 u8 gencursor; 16 u8 genctr; 17}; 18 19#endif