linux/net/netfilter/xt_connlabel.c

// SPDX-License-Identifier: GPL-2.0-only
/*
 * (C) 2013 Astaro GmbH & Co KG
 */

#include <linux/module.h>
#include <linux/skbuff.h>
#include <net/netfilter/nf_conntrack.h>
#include <net/netfilter/nf_conntrack_ecache.h>
#include <net/netfilter/nf_conntrack_labels.h>
#include <linux/netfilter/x_tables.h>

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

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

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

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

static struct xt_match connlabels_mt_reg __read_mostly =;

static int __init connlabel_mt_init(void)
{}

static void __exit connlabel_mt_exit(void)
{}

module_init();
module_exit(connlabel_mt_exit);