#define pr_fmt(fmt) …
#include <linux/module.h>
#include <linux/skbuff.h>
#include <linux/netfilter/x_tables.h>
#include <linux/netfilter/nfnetlink_acct.h>
#include <linux/netfilter/xt_nfacct.h>
MODULE_AUTHOR(…) …;
MODULE_DESCRIPTION(…) …;
MODULE_LICENSE(…) …;
MODULE_ALIAS(…) …;
MODULE_ALIAS(…) …;
static bool nfacct_mt(const struct sk_buff *skb, struct xt_action_param *par)
{ … }
static int
nfacct_mt_checkentry(const struct xt_mtchk_param *par)
{ … }
static void
nfacct_mt_destroy(const struct xt_mtdtor_param *par)
{ … }
static struct xt_match nfacct_mt_reg[] __read_mostly = …;
static int __init nfacct_mt_init(void)
{ … }
static void __exit nfacct_mt_exit(void)
{ … }
module_init(…) …;
module_exit(nfacct_mt_exit);