netfilter: move Ebtables to use Xtables
[safe/jmp/linux-2.6] / net / netfilter / xt_TRACE.c
1 /* This is a module which is used to mark packets for tracing.
2  */
3 #include <linux/module.h>
4 #include <linux/skbuff.h>
5
6 #include <linux/netfilter/x_tables.h>
7
8 MODULE_DESCRIPTION("Xtables: packet flow tracing");
9 MODULE_LICENSE("GPL");
10 MODULE_ALIAS("ipt_TRACE");
11 MODULE_ALIAS("ip6t_TRACE");
12
13 static unsigned int
14 trace_tg(struct sk_buff *skb, const struct net_device *in,
15          const struct net_device *out, unsigned int hooknum,
16          const struct xt_target *target, const void *targinfo)
17 {
18         skb->nf_trace = 1;
19         return XT_CONTINUE;
20 }
21
22 static struct xt_target trace_tg_reg __read_mostly = {
23         .name       = "TRACE",
24         .revision   = 0,
25         .family     = NFPROTO_UNSPEC,
26         .table      = "raw",
27         .target     = trace_tg,
28         .me         = THIS_MODULE,
29 };
30
31 static int __init trace_tg_init(void)
32 {
33         return xt_register_target(&trace_tg_reg);
34 }
35
36 static void __exit trace_tg_exit(void)
37 {
38         xt_unregister_target(&trace_tg_reg);
39 }
40
41 module_init(trace_tg_init);
42 module_exit(trace_tg_exit);