nftables.h 401 B

12345678910111213141516171819202122
  1. #ifndef _NETNS_NFTABLES_H_
  2. #define _NETNS_NFTABLES_H_
  3. #include <linux/list.h>
  4. struct nft_af_info;
  5. struct netns_nftables {
  6. struct list_head af_info;
  7. struct list_head commit_list;
  8. struct nft_af_info *ipv4;
  9. struct nft_af_info *ipv6;
  10. struct nft_af_info *inet;
  11. struct nft_af_info *arp;
  12. struct nft_af_info *bridge;
  13. struct nft_af_info *netdev;
  14. unsigned int base_seq;
  15. u8 gencursor;
  16. };
  17. #endif