]> git.kernelconcepts.de Git - karo-tx-linux.git/blob - include/net/netns/nftables.h
Merge tag 'sound-fix-3.14-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/tiwai...
[karo-tx-linux.git] / include / net / netns / nftables.h
1 #ifndef _NETNS_NFTABLES_H_
2 #define _NETNS_NFTABLES_H_
3
4 #include <linux/list.h>
5
6 struct nft_af_info;
7
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         u8                      gencursor;
17         u8                      genctr;
18 };
19
20 #endif