[PKT_SCHED]: Introduce simple actions.

And provide an example simply action in order to
demonstrate usage.

Signed-off-by: Jamal Hadi Salim <hadi@cyberus.ca>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
Jamal Hadi Salim 2005-04-24 20:10:16 -07:00 committed by David S. Miller
parent ac6910e189
commit db75307979
6 changed files with 299 additions and 5 deletions

View file

@ -0,0 +1,13 @@
#ifndef __NET_TC_DEF_H
#define __NET_TC_DEF_H
#include <net/act_api.h>
struct tcf_defact
{
tca_gen(defact);
u32 datalen;
void *defdata;
};
#endif