#include <net/ip.h>
#include <net/tcp.h>
#include <net/netfilter/nf_tables.h>
#include <linux/netfilter/nfnetlink_osf.h>
struct nft_osf { … };
static const struct nla_policy nft_osf_policy[NFTA_OSF_MAX + 1] = …;
static void nft_osf_eval(const struct nft_expr *expr, struct nft_regs *regs,
const struct nft_pktinfo *pkt)
{ … }
static int nft_osf_init(const struct nft_ctx *ctx,
const struct nft_expr *expr,
const struct nlattr * const tb[])
{ … }
static int nft_osf_dump(struct sk_buff *skb,
const struct nft_expr *expr, bool reset)
{ … }
static int nft_osf_validate(const struct nft_ctx *ctx,
const struct nft_expr *expr,
const struct nft_data **data)
{ … }
static bool nft_osf_reduce(struct nft_regs_track *track,
const struct nft_expr *expr)
{ … }
static struct nft_expr_type nft_osf_type;
static const struct nft_expr_ops nft_osf_op = …;
static struct nft_expr_type nft_osf_type __read_mostly = …;
static int __init nft_osf_module_init(void)
{ … }
static void __exit nft_osf_module_exit(void)
{ … }
module_init(…) …;
module_exit(nft_osf_module_exit);
MODULE_LICENSE(…) …;
MODULE_AUTHOR(…) …;
MODULE_ALIAS_NFT_EXPR(…) …;
MODULE_DESCRIPTION(…) …;