#include <linux/module.h>
#include <linux/skbuff.h>
#include <net/netfilter/nf_conntrack.h>
#include <net/netfilter/nf_conntrack_ecache.h>
#include <linux/netfilter/x_tables.h>
#include <linux/netfilter/xt_connmark.h>
MODULE_AUTHOR(…) …;
MODULE_DESCRIPTION(…) …;
MODULE_LICENSE(…) …;
MODULE_ALIAS(…) …;
MODULE_ALIAS(…) …;
MODULE_ALIAS(…) …;
MODULE_ALIAS(…) …;
static unsigned int
connmark_tg_shift(struct sk_buff *skb, const struct xt_connmark_tginfo2 *info)
{ … }
static unsigned int
connmark_tg(struct sk_buff *skb, const struct xt_action_param *par)
{ … }
static unsigned int
connmark_tg_v2(struct sk_buff *skb, const struct xt_action_param *par)
{ … }
static int connmark_tg_check(const struct xt_tgchk_param *par)
{ … }
static void connmark_tg_destroy(const struct xt_tgdtor_param *par)
{ … }
static bool
connmark_mt(const struct sk_buff *skb, struct xt_action_param *par)
{ … }
static int connmark_mt_check(const struct xt_mtchk_param *par)
{ … }
static void connmark_mt_destroy(const struct xt_mtdtor_param *par)
{ … }
static struct xt_target connmark_tg_reg[] __read_mostly = …;
static struct xt_match connmark_mt_reg __read_mostly = …;
static int __init connmark_mt_init(void)
{ … }
static void __exit connmark_mt_exit(void)
{ … }
module_init(…) …;
module_exit(connmark_mt_exit);