linux/net/netfilter/xt_mark.c

// SPDX-License-Identifier: GPL-2.0-only
/*
 *	xt_mark - Netfilter module to match NFMARK value
 *
 *	(C) 1999-2001 Marc Boucher <[email protected]>
 *	Copyright © CC Computer Consultants GmbH, 2007 - 2008
 *	Jan Engelhardt <[email protected]>
 */

#include <linux/module.h>
#include <linux/skbuff.h>

#include <linux/netfilter/xt_mark.h>
#include <linux/netfilter/x_tables.h>

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

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

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

static struct xt_target mark_tg_reg __read_mostly =;

static struct xt_match mark_mt_reg __read_mostly =;

static int __init mark_mt_init(void)
{}

static void __exit mark_mt_exit(void)
{}

module_init();
module_exit(mark_mt_exit);