https://jxself.org/git/linux-libre.git
Raw File
Tip revision: a29093229a0cc2592853f475fd531c552c46bc89 authored by Jason Self on 18 December 2009, 22:27:15 UTC
Linux-libre 2.6.32.2-gnu1
Tip revision: a290932
tc_gact.h
#ifndef __NET_TC_GACT_H
#define __NET_TC_GACT_H

#include <net/act_api.h>

struct tcf_gact {
	struct tcf_common	common;
#ifdef CONFIG_GACT_PROB
        u16			tcfg_ptype;
        u16			tcfg_pval;
        int			tcfg_paction;
#endif
};
#define to_gact(pc) \
	container_of(pc, struct tcf_gact, common)

#endif /* __NET_TC_GACT_H */
back to top