blob: a49b4ff549702ad23d1e931a2906a4b69a8c55b2 (
plain)
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
#ifndef NFTABLES_META_H
#define NFTABLES_META_H
/**
* struct meta_template - template for meta expressions and statements
*
* @token: parser token for the expression
* @dtype: data type of the expression
* @len: length of the expression
* @byteorder: byteorder
*/
struct meta_template {
const char *token;
const struct datatype *dtype;
enum byteorder byteorder;
unsigned int len;
};
extern const struct meta_template meta_templates[];
#define META_TEMPLATE(__token, __dtype, __len, __byteorder) { \
.token = (__token), \
.dtype = (__dtype), \
.len = (__len), \
.byteorder = (__byteorder), \
}
extern struct expr *meta_expr_alloc(const struct location *loc,
enum nft_meta_keys key);
struct stmt *meta_stmt_meta_iiftype(const struct location *loc, uint16_t type);
struct error_record *meta_key_parse(const struct location *loc,
const char *name,
unsigned int *value);
extern const struct datatype ifindex_type;
extern const struct datatype tchandle_type;
extern const struct datatype gid_type;
extern const struct datatype uid_type;
extern const struct datatype devgroup_type;
extern const struct datatype pkttype_type;
extern const struct datatype ifname_type;
extern struct symbol_table *devgroup_tbl;
#endif /* NFTABLES_META_H */
|