#include <linux/module.h>
#include <linux/skbuff.h>
#include <linux/gen_stats.h>
#include <linux/netfilter/x_tables.h>
#include <linux/netfilter/xt_rateest.h>
#include <net/netfilter/xt_rateest.h>
static bool
xt_rateest_mt(const struct sk_buff *skb, struct xt_action_param *par)
{ … }
static int xt_rateest_mt_checkentry(const struct xt_mtchk_param *par)
{ … }
static void xt_rateest_mt_destroy(const struct xt_mtdtor_param *par)
{ … }
static struct xt_match xt_rateest_mt_reg __read_mostly = …;
static int __init xt_rateest_mt_init(void)
{ … }
static void __exit xt_rateest_mt_fini(void)
{ … }
MODULE_AUTHOR(…) …;
MODULE_LICENSE(…) …;
MODULE_DESCRIPTION(…) …;
MODULE_ALIAS(…) …;
MODULE_ALIAS(…) …;
module_init(…) …;
module_exit(xt_rateest_mt_fini);