2005-04-25 03:10:16 +00:00
|
|
|
#ifndef __NET_TC_DEF_H
|
|
|
|
#define __NET_TC_DEF_H
|
|
|
|
|
|
|
|
#include <net/act_api.h>
|
|
|
|
|
2006-08-22 06:54:55 +00:00
|
|
|
struct tcf_defact {
|
2016-07-25 23:09:42 +00:00
|
|
|
struct tc_action common;
|
2016-06-05 14:41:32 +00:00
|
|
|
u32 tcfd_datalen;
|
|
|
|
void *tcfd_defdata;
|
2005-04-25 03:10:16 +00:00
|
|
|
};
|
2016-07-25 23:09:41 +00:00
|
|
|
#define to_defact(a) ((struct tcf_defact *)a)
|
2005-04-25 03:10:16 +00:00
|
|
|
|
2006-08-22 06:54:55 +00:00
|
|
|
#endif /* __NET_TC_DEF_H */
|