mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 00:34:52 +00:00
16 lines
246 B
C
16 lines
246 B
C
![]() |
#ifndef _NETNS_NFTABLES_H_
|
||
|
#define _NETNS_NFTABLES_H_
|
||
|
|
||
|
#include <linux/list.h>
|
||
|
|
||
|
struct nft_af_info;
|
||
|
|
||
|
struct netns_nftables {
|
||
|
struct list_head af_info;
|
||
|
struct nft_af_info *ipv4;
|
||
|
struct nft_af_info *ipv6;
|
||
|
struct nft_af_info *bridge;
|
||
|
};
|
||
|
|
||
|
#endif
|