linux/net/bridge/netfilter/ebt_ip6.c

// SPDX-License-Identifier: GPL-2.0-only
/*
 *  ebt_ip6
 *
 *	Authors:
 *	Manohar Castelino <[email protected]>
 *	Kuo-Lang Tseng <[email protected]>
 *	Jan Engelhardt <[email protected]>
 *
 * Summary:
 * This is just a modification of the IPv4 code written by
 * Bart De Schuymer <[email protected]>
 * with the changes required to support IPv6
 *
 *  Jan, 2008
 */
#include <linux/ipv6.h>
#include <net/ipv6.h>
#include <linux/in.h>
#include <linux/module.h>
#include <net/dsfield.h>
#include <linux/netfilter/x_tables.h>
#include <linux/netfilter_bridge/ebtables.h>
#include <linux/netfilter_bridge/ebt_ip6.h>

pkthdr;

static bool
ebt_ip6_mt(const struct sk_buff *skb, struct xt_action_param *par)
{}

static int ebt_ip6_mt_check(const struct xt_mtchk_param *par)
{}

static struct xt_match ebt_ip6_mt_reg __read_mostly =;

static int __init ebt_ip6_init(void)
{}

static void __exit ebt_ip6_fini(void)
{}

module_init();
module_exit(ebt_ip6_fini);
MODULE_DESCRIPTION();
MODULE_AUTHOR();
MODULE_LICENSE();