linux/net/ipv6/netfilter/ip6table_raw.c

// SPDX-License-Identifier: GPL-2.0-only
/*
 * IPv6 raw table, a port of the IPv4 raw table to IPv6
 *
 * Copyright (C) 2003 Jozsef Kadlecsik <[email protected]>
 */
#define pr_fmt(fmt)
#include <linux/module.h>
#include <linux/netfilter_ipv6/ip6_tables.h>
#include <linux/slab.h>

#define RAW_VALID_HOOKS

static bool raw_before_defrag __read_mostly;
MODULE_PARM_DESC();
module_param(raw_before_defrag, bool, 0000);

static const struct xt_table packet_raw =;

static const struct xt_table packet_raw_before_defrag =;

static struct nf_hook_ops *rawtable_ops __read_mostly;

static int ip6table_raw_table_init(struct net *net)
{}

static void __net_exit ip6table_raw_net_pre_exit(struct net *net)
{}

static void __net_exit ip6table_raw_net_exit(struct net *net)
{}

static struct pernet_operations ip6table_raw_net_ops =;

static int __init ip6table_raw_init(void)
{}

static void __exit ip6table_raw_fini(void)
{}

module_init();
module_exit(ip6table_raw_fini);
MODULE_LICENSE();
MODULE_DESCRIPTION();