]>
Commit | Line | Data |
---|---|---|
1da177e4 LT |
1 | /* |
2 | * This is a module which is used for setting the skb->priority field | |
3 | * of an skb for qdisc classification. | |
4 | */ | |
5 | ||
6 | /* (C) 2001-2002 Patrick McHardy <[email protected]> | |
7 | * | |
8 | * This program is free software; you can redistribute it and/or modify | |
9 | * it under the terms of the GNU General Public License version 2 as | |
10 | * published by the Free Software Foundation. | |
11 | */ | |
12 | ||
13 | #include <linux/module.h> | |
14 | #include <linux/skbuff.h> | |
15 | #include <linux/ip.h> | |
16 | #include <net/checksum.h> | |
17 | ||
891350c9 PM |
18 | #include <linux/netfilter_ipv4.h> |
19 | #include <linux/netfilter_ipv6.h> | |
2e4e6a17 HW |
20 | #include <linux/netfilter/x_tables.h> |
21 | #include <linux/netfilter/xt_CLASSIFY.h> | |