swh:1:snp:32555a3fd8878f019c2ebd6c964bc1edcaeff337
Raw File
Tip revision: 091bf7624d1c90cec9e578a18529f615213ff847 authored by Linus Torvalds on 09 May 2009, 00:14:14 UTC
Linux 2.6.30-rc5
Tip revision: 091bf76
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