linux/net/netfilter/xt_quota.c

// SPDX-License-Identifier: GPL-2.0-only
/*
 * netfilter module to enforce network quotas
 *
 * Sam Johnston <[email protected]>
 */
#include <linux/skbuff.h>
#include <linux/slab.h>
#include <linux/spinlock.h>

#include <linux/netfilter/x_tables.h>
#include <linux/netfilter/xt_quota.h>
#include <linux/module.h>

struct xt_quota_priv {};

MODULE_LICENSE();
MODULE_AUTHOR();
MODULE_DESCRIPTION();
MODULE_ALIAS();
MODULE_ALIAS();

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

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

static void quota_mt_destroy(const struct xt_mtdtor_param *par)
{}

static struct xt_match quota_mt_reg __read_mostly =;

static int __init quota_mt_init(void)
{}

static void __exit quota_mt_exit(void)
{}

module_init();
module_exit(quota_mt_exit);