blob: 07bb2210d2234f681059dfe5f4760da6984a4547 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef NFTABLES_FIB_H
#define NFTABLES_FIB_H
#include <linux/netfilter/nf_tables.h>
extern const char *fib_result_str(const struct expr *expr);
extern struct expr *fib_expr_alloc(const struct location *loc,
unsigned int flags,
unsigned int result);
extern const struct datatype fib_addr_type;
#endif /* NFTABLES_FIB_H */
|