1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
#ifndef _EXPR_OPS_H_
#define _EXPR_OPS_H_
#include <stdint.h>
#include "internal.h"
struct nlattr;
struct nlmsghdr;
struct nftnl_expr;
struct expr_ops {
const char *name;
uint32_t alloc_len;
int max_attr;
void (*free)(const struct nftnl_expr *e);
bool (*cmp)(const struct nftnl_expr *e1, const struct nftnl_expr *e2);
int (*set)(struct nftnl_expr *e, uint16_t type, const void *data, uint32_t data_len);
const void *(*get)(const struct nftnl_expr *e, uint16_t type, uint32_t *data_len);
int (*parse)(struct nftnl_expr *e, struct nlattr *attr);
void (*build)(struct nlmsghdr *nlh, const struct nftnl_expr *e);
int (*snprintf)(char *buf, size_t len, uint32_t type, uint32_t flags, const struct nftnl_expr *e);
int (*json_parse)(struct nftnl_expr *e, json_t *data,
struct nftnl_parse_err *err);
};
struct expr_ops *nftnl_expr_ops_lookup(const char *name);
#define nftnl_expr_data(ops) (void *)ops->data
#endif
|