Merge tag 'hsi-for-4.8' of git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi
[deliverable/linux.git] / include / net / netns / nftables.h
CommitLineData
99633ab2
PNA
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;
0628b123 10 struct list_head commit_list;
99633ab2
PNA
11 struct nft_af_info *ipv4;
12 struct nft_af_info *ipv6;
1d49144c 13 struct nft_af_info *inet;
ed683f13 14 struct nft_af_info *arp;
99633ab2 15 struct nft_af_info *bridge;
ed6c4136 16 struct nft_af_info *netdev;
38e029f1 17 unsigned int base_seq;
0628b123 18 u8 gencursor;
99633ab2
PNA
19};
20
21#endif
This page took 0.157884 seconds and 5 git commands to generate.