linux/net/bridge/netfilter/ebt_nflog.c

// SPDX-License-Identifier: GPL-2.0-only
/*
 * ebt_nflog
 *
 *	Author:
 *	Peter Warasin <[email protected]>
 *
 *  February, 2008
 *
 * Based on:
 *  xt_NFLOG.c, (C) 2006 by Patrick McHardy <[email protected]>
 *  ebt_ulog.c, (C) 2004 by Bart De Schuymer <[email protected]>
 *
 */

#include <linux/module.h>
#include <linux/spinlock.h>
#include <linux/netfilter/x_tables.h>
#include <linux/netfilter_bridge/ebtables.h>
#include <linux/netfilter_bridge/ebt_nflog.h>
#include <net/netfilter/nf_log.h>

static unsigned int
ebt_nflog_tg(struct sk_buff *skb, const struct xt_action_param *par)
{}

static int ebt_nflog_tg_check(const struct xt_tgchk_param *par)
{}

static struct xt_target ebt_nflog_tg_reg __read_mostly =;

static int __init ebt_nflog_init(void)
{}

static void __exit ebt_nflog_fini(void)
{}

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