mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-19 02:34:01 +08: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
|