• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/iptables-1.4.x/extensions/
1/* Shared library add-on to iptables to add MIRROR target support. */
2#include <xtables.h>
3
4static struct xtables_target mirror_tg_reg = {
5	.name		= "MIRROR",
6	.version	= XTABLES_VERSION,
7	.family		= NFPROTO_IPV4,
8	.size		= XT_ALIGN(0),
9	.userspacesize	= XT_ALIGN(0),
10};
11
12void _init(void)
13{
14	xtables_register_target(&mirror_tg_reg);
15}
16