blob: 67edccfea0d572e329da2f66ce131d4755ba024e (
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(enum nft_fib_result result);
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 */
|