swh:1:snp:32555a3fd8878f019c2ebd6c964bc1edcaeff337
Raw File
Tip revision: 041b62374c7fedc11a8a1eeda2868612d3d1436c authored by Linus Torvalds on 13 March 2009, 02:39:28 UTC
Linus 2.6.29-rc8
Tip revision: 041b623
x_tables.h
#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];
	struct ebt_table *broute_table;
	struct ebt_table *frame_filter;
	struct ebt_table *frame_nat;
};
#endif
back to top