M7350/kernel/include/net/netns/x_tables.h

20 lines
427 B
C
Raw Normal View History

2024-09-09 08:52:07 +00:00
#ifndef __NETNS_X_TABLES_H
#define __NETNS_X_TABLES_H
#include <linux/list.h>
#include <linux/netfilter.h>
struct ebt_table;
struct netns_xt {
struct list_head tables[NFPROTO_NUMPROTO];
2024-09-09 08:57:42 +00:00
bool notrack_deprecated_warning;
2024-09-09 08:52:07 +00:00
#if defined(CONFIG_BRIDGE_NF_EBTABLES) || \
defined(CONFIG_BRIDGE_NF_EBTABLES_MODULE)
struct ebt_table *broute_table;
struct ebt_table *frame_filter;
struct ebt_table *frame_nat;
#endif
};
#endif