1 /* SPDX-License-Identifier: GPL-2.0 */ << 2 #ifndef _NETNS_NFTABLES_H_ 1 #ifndef _NETNS_NFTABLES_H_ 3 #define _NETNS_NFTABLES_H_ 2 #define _NETNS_NFTABLES_H_ 4 3 >> 4 #include <linux/list.h> >> 5 >> 6 struct nft_af_info; >> 7 5 struct netns_nftables { 8 struct 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 *inet; >> 14 struct nft_af_info *arp; >> 15 struct nft_af_info *bridge; >> 16 struct nft_af_info *netdev; >> 17 unsigned int base_seq; 6 u8 gencursor; 18 u8 gencursor; 7 }; 19 }; 8 20 9 #endif 21 #endif 10 22
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.