mirror of
https://github.com/followmsi/android_kernel_google_msm.git
synced 2024-11-06 23:17:41 +00:00
18 lines
425 B
C
18 lines
425 B
C
|
#ifndef __NET_TC_GACT_H
|
||
|
#define __NET_TC_GACT_H
|
||
|
|
||
|
#include <net/act_api.h>
|
||
|
|
||
|
struct tcf_gact
|
||
|
{
|
||
|
tca_gen(gact);
|
||
|
#ifdef CONFIG_GACT_PROB
|
||
|
u16 ptype;
|
||
|
u16 pval;
|
||
|
int paction;
|
||
|
#endif
|
||
|
|
||
|
};
|
||
|
|
||
|
#endif
|