summaryrefslogtreecommitdiffstats
path: root/extensions/libipt_NOTRACK.c
diff options
context:
space:
mode:
author/C=JP/ST=JP/CN=Yasuyuki Kozakai/emailAddress=yasuyuki@netfilter.org </C=JP/ST=JP/CN=Yasuyuki Kozakai/emailAddress=yasuyuki@netfilter.org>2007-07-24 06:42:15 +0000
committer/C=JP/ST=JP/CN=Yasuyuki Kozakai/emailAddress=yasuyuki@netfilter.org </C=JP/ST=JP/CN=Yasuyuki Kozakai/emailAddress=yasuyuki@netfilter.org>2007-07-24 06:42:15 +0000
commitbd6aa59e02e3d2e1b5d72e42204f8bc3f90bbbe2 (patch)
tree4bb960ac219b12e64bb4e2c00c038758d2150703 /extensions/libipt_NOTRACK.c
parent9dbffbfd42210b766aea8f1abf895f3da7879f1c (diff)
Renames libipt_NOTRACK.c to libxt_NOTRACK.c
Diffstat (limited to 'extensions/libipt_NOTRACK.c')
-rw-r--r--extensions/libipt_NOTRACK.c62
1 files changed, 0 insertions, 62 deletions
diff --git a/extensions/libipt_NOTRACK.c b/extensions/libipt_NOTRACK.c
deleted file mode 100644
index 2276eb6..0000000
--- a/extensions/libipt_NOTRACK.c
+++ /dev/null
@@ -1,62 +0,0 @@
-/* Shared library add-on to iptables to add NOTRACK target support. */
-#include <stdio.h>
-#include <string.h>
-#include <stdlib.h>
-#include <getopt.h>
-
-#include <xtables.h>
-#include <linux/netfilter/x_tables.h>
-
-/* Function which prints out usage message. */
-static void
-help(void)
-{
- printf(
-"NOTRACK target v%s takes no options\n",
-IPTABLES_VERSION);
-}
-
-static struct option opts[] = {
- { 0 }
-};
-
-/* Initialize the target. */
-static void
-init(struct xt_entry_target *t, unsigned int *nfcache)
-{
-}
-
-/* Function which parses command options; returns true if it
- ate an option */
-static int
-parse(int c, char **argv, int invert, unsigned int *flags,
- const void *entry,
- struct xt_entry_target **target)
-{
- return 0;
-}
-
-static void
-final_check(unsigned int flags)
-{
-}
-
-static
-struct xtables_target notrack =
-{
- .family = AF_INET,
- .name = "NOTRACK",
- .version = IPTABLES_VERSION,
- .size = XT_ALIGN(0),
- .userspacesize = XT_ALIGN(0),
- .help = &help,
- .init = &init,
- .parse = &parse,
- .final_check = &final_check,
- .extra_opts = opts,
-};
-
-void _init(void)
-{
- xtables_register_target(&notrack);
-}