[NETFILTER]: nf_conntrack: change nf_conntrack_l[34]proto_unregister to void
[deliverable/linux.git] / net / netfilter / xt_CLASSIFY.c
CommitLineData
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 <kaber@trash.net>
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
2e4e6a17
HW
18#include <linux/netfilter/x_tables.h>
19#include <linux/netfilter/xt_CLASSIFY.h>
1da177e4
LT
20
21MODULE_AUTHOR("Patrick McHardy <kaber@trash.net>");
22MODULE_LICENSE("GPL");
23MODULE_DESCRIPTION("iptables qdisc classification target module");
2e4e6a17 24MODULE_ALIAS("ipt_CLASSIFY");
1da177e4
LT
25
26static unsigned int
27target(struct sk_buff **pskb,
28 const struct net_device *in,
29 const struct net_device *out,
30 unsigned int hooknum,
c4986734 31 const struct xt_target *target,
fe1cb108 32 const void *targinfo)
1da177e4 33{
2e4e6a17 34 const struct xt_classify_target_info *clinfo = targinfo;
1da177e4 35
2822b0d9 36 (*pskb)->priority = clinfo->priority;
2e4e6a17 37 return XT_CONTINUE;
1da177e4
LT
38}
39
4470bbc7
PM
40static struct xt_target xt_classify_target[] = {
41 {
42 .family = AF_INET,
43 .name = "CLASSIFY",
44 .target = target,
45 .targetsize = sizeof(struct xt_classify_target_info),
46 .table = "mangle",
47 .hooks = (1 << NF_IP_LOCAL_OUT) |
48 (1 << NF_IP_FORWARD) |
49 (1 << NF_IP_POST_ROUTING),
50 .me = THIS_MODULE,
51 },
52 {
53 .name = "CLASSIFY",
54 .family = AF_INET6,
55 .target = target,
56 .targetsize = sizeof(struct xt_classify_target_info),
57 .table = "mangle",
58 .hooks = (1 << NF_IP_LOCAL_OUT) |
59 (1 << NF_IP_FORWARD) |
60 (1 << NF_IP_POST_ROUTING),
61 .me = THIS_MODULE,
62 },
2e4e6a17 63};
2e4e6a17 64
65b4b4e8 65static int __init xt_classify_init(void)
1da177e4 66{
4470bbc7
PM
67 return xt_register_targets(xt_classify_target,
68 ARRAY_SIZE(xt_classify_target));
1da177e4
LT
69}
70
65b4b4e8 71static void __exit xt_classify_fini(void)
1da177e4 72{
4470bbc7
PM
73 xt_unregister_targets(xt_classify_target,
74 ARRAY_SIZE(xt_classify_target));
1da177e4
LT
75}
76
65b4b4e8
AM
77module_init(xt_classify_init);
78module_exit(xt_classify_fini);
This page took 0.186099 seconds and 5 git commands to generate.