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