swh:1:snp:173f8deb0c56c557784b4fd217e7608ac6197844
Raw File
Tip revision: 88026842b0a760145aa71d69e74fbc9ec118ca44 authored by Linus Torvalds on 03 January 2006, 03:21:10 UTC
Linux v2.6.15
Tip revision: 8802684
tc_ipt.h
#ifndef __NET_TC_IPT_H
#define __NET_TC_IPT_H

#include <net/act_api.h>

struct ipt_entry_target;

struct tcf_ipt
{
	tca_gen(ipt);
	u32 hook;
	char *tname;
	struct ipt_entry_target *t;
};

#endif
back to top