2 * This is a module which is used for setting the skb->priority field
3 * of an skb for qdisc classification.
6 /* (C) 2001-2002 Patrick McHardy <kaber@trash.net>
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.
13 #include <linux/module.h>
14 #include <linux/skbuff.h>
16 #include <net/checksum.h>
18 #include <linux/netfilter_ipv4.h>
19 #include <linux/netfilter_ipv6.h>
20 #include <linux/netfilter/x_tables.h>
21 #include <linux/netfilter/xt_CLASSIFY.h>
23 MODULE_AUTHOR("Patrick McHardy <kaber@trash.net>");
24 MODULE_LICENSE("GPL");
25 MODULE_DESCRIPTION("iptables qdisc classification target module");
26 MODULE_ALIAS("ipt_CLASSIFY");
29 target(struct sk_buff **pskb,
30 const struct net_device *in,
31 const struct net_device *out,
33 const struct xt_target *target,
36 const struct xt_classify_target_info *clinfo = targinfo;
38 (*pskb)->priority = clinfo->priority;
42 static struct xt_target xt_classify_target[] __read_mostly = {
47 .targetsize = sizeof(struct xt_classify_target_info),
49 .hooks = (1 << NF_IP_LOCAL_OUT) |
50 (1 << NF_IP_FORWARD) |
51 (1 << NF_IP_POST_ROUTING),
58 .targetsize = sizeof(struct xt_classify_target_info),
60 .hooks = (1 << NF_IP6_LOCAL_OUT) |
61 (1 << NF_IP6_FORWARD) |
62 (1 << NF_IP6_POST_ROUTING),
67 static int __init xt_classify_init(void)
69 return xt_register_targets(xt_classify_target,
70 ARRAY_SIZE(xt_classify_target));
73 static void __exit xt_classify_fini(void)
75 xt_unregister_targets(xt_classify_target,
76 ARRAY_SIZE(xt_classify_target));
79 module_init(xt_classify_init);
80 module_exit(xt_classify_fini);