summaryrefslogtreecommitdiffstats
path: root/extensions/libxt_TRACE.c
blob: 7cb3585b37c14df68280408bfc2a4058986e670e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/* Shared library add-on to iptables to add TRACE target support. */
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <getopt.h>

#include <xtables.h>
#include <linux/netfilter/x_tables.h>

static int trace_xlate(const void *ip, const struct xt_entry_target *target,
		       struct xt_xlate *xl, int numeric)
{
	xt_xlate_add(xl, "nftrace set 1");
	return 1;
}

static struct xtables_target trace_target = {
	.family		= NFPROTO_UNSPEC,
	.name		= "TRACE",
	.version	= XTABLES_VERSION,
	.size		= XT_ALIGN(0),
	.userspacesize	= XT_ALIGN(0),
	.xlate		= trace_xlate,
};

void _init(void)
{
	xtables_register_target(&trace_target);
}