swh:1:snp:32555a3fd8878f019c2ebd6c964bc1edcaeff337
Raw File
Tip revision: ed680c4ad478d0fee9740f7d029087f181346564 authored by Linus Torvalds on 01 August 2009, 00:40:45 UTC
Linux 2.6.31-rc5
Tip revision: ed680c4
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