2008-01-31 05:02:13 -07:00
|
|
|
#ifndef __NETNS_X_TABLES_H
|
|
|
|
#define __NETNS_X_TABLES_H
|
|
|
|
|
|
|
|
#include <linux/list.h>
|
2008-10-20 04:31:54 -06:00
|
|
|
#include <linux/netfilter.h>
|
2008-01-31 05:02:13 -07:00
|
|
|
|
2008-11-04 06:29:03 -07:00
|
|
|
struct ebt_table;
|
|
|
|
|
2008-01-31 05:02:13 -07:00
|
|
|
struct netns_xt {
|
2008-10-20 04:31:54 -06:00
|
|
|
struct list_head tables[NFPROTO_NUMPROTO];
|
2008-11-04 06:29:03 -07:00
|
|
|
struct ebt_table *broute_table;
|
2008-01-31 05:02:13 -07:00
|
|
|
};
|
|
|
|
#endif
|