#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);