#include <linux/init.h>
#include <linux/module.h>
#include <linux/skbuff.h>
#include <linux/netlink.h>
#include <linux/netfilter.h>
#include <linux/netfilter/nf_tables.h>
#include <net/netfilter/nf_tables_core.h>
#define nft_objref_priv(expr) …
void nft_objref_eval(const struct nft_expr *expr,
struct nft_regs *regs,
const struct nft_pktinfo *pkt)
{ … }
static int nft_objref_init(const struct nft_ctx *ctx,
const struct nft_expr *expr,
const struct nlattr * const tb[])
{ … }
static int nft_objref_dump(struct sk_buff *skb,
const struct nft_expr *expr, bool reset)
{ … }
static void nft_objref_deactivate(const struct nft_ctx *ctx,
const struct nft_expr *expr,
enum nft_trans_phase phase)
{ … }
static void nft_objref_activate(const struct nft_ctx *ctx,
const struct nft_expr *expr)
{ … }
static const struct nft_expr_ops nft_objref_ops = …;
struct nft_objref_map { … };
void nft_objref_map_eval(const struct nft_expr *expr,
struct nft_regs *regs,
const struct nft_pktinfo *pkt)
{ … }
static int nft_objref_map_init(const struct nft_ctx *ctx,
const struct nft_expr *expr,
const struct nlattr * const tb[])
{ … }
static int nft_objref_map_dump(struct sk_buff *skb,
const struct nft_expr *expr, bool reset)
{ … }
static void nft_objref_map_deactivate(const struct nft_ctx *ctx,
const struct nft_expr *expr,
enum nft_trans_phase phase)
{ … }
static void nft_objref_map_activate(const struct nft_ctx *ctx,
const struct nft_expr *expr)
{ … }
static void nft_objref_map_destroy(const struct nft_ctx *ctx,
const struct nft_expr *expr)
{ … }
static const struct nft_expr_ops nft_objref_map_ops = …;
static const struct nft_expr_ops *
nft_objref_select_ops(const struct nft_ctx *ctx,
const struct nlattr * const tb[])
{ … }
static const struct nla_policy nft_objref_policy[NFTA_OBJREF_MAX + 1] = …;
struct nft_expr_type nft_objref_type __read_mostly = …;