blob: eb21689d759dddda7b7cc2c845497561663585a9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef __NET_TC_PED_H
#define __NET_TC_PED_H
#include <net/act_api.h>
struct tcf_pedit
{
tca_gen(pedit);
unsigned char nkeys;
unsigned char flags;
struct tc_pedit_key *keys;
};
#endif
|