diff options
Diffstat (limited to 'include/nftables.h')
-rw-r--r-- | include/nftables.h | 29 |
1 files changed, 21 insertions, 8 deletions
diff --git a/include/nftables.h b/include/nftables.h index d49eb579..c058667c 100644 --- a/include/nftables.h +++ b/include/nftables.h @@ -1,7 +1,6 @@ #ifndef NFTABLES_NFTABLES_H #define NFTABLES_NFTABLES_H -#include <stdbool.h> #include <stdarg.h> #include <limits.h> #include <utils.h> @@ -23,8 +22,23 @@ struct symbol_tables { const struct symbol_table *realm; }; +struct input_ctx { + unsigned int flags; +}; + +static inline bool nft_input_no_dns(const struct input_ctx *ictx) +{ + return ictx->flags & NFT_CTX_INPUT_NO_DNS; +} + +static inline bool nft_input_json(const struct input_ctx *ictx) +{ + return ictx->flags & NFT_CTX_INPUT_JSON; +} + struct output_ctx { unsigned int flags; + bool force_newline; union { FILE *output_fp; struct cookie output_cookie; @@ -119,6 +133,7 @@ struct nft_ctx { unsigned int num_vars; unsigned int parser_max_errors; unsigned int debug_mask; + struct input_ctx input; struct output_ctx output; bool check; struct nft_cache cache; @@ -144,11 +159,8 @@ struct location { const struct input_descriptor *indesc; union { struct { - off_t token_offset; - off_t line_offset; - + unsigned int line_offset; unsigned int first_line; - unsigned int last_line; unsigned int first_column; unsigned int last_column; }; @@ -210,7 +222,6 @@ struct input_descriptor { void ct_label_table_init(struct nft_ctx *ctx); void mark_table_init(struct nft_ctx *ctx); -void gmp_init(void); void realm_table_rt_init(struct nft_ctx *ctx); void devgroup_table_init(struct nft_ctx *ctx); void xt_init(void); @@ -222,11 +233,13 @@ void realm_table_rt_exit(struct nft_ctx *ctx); int nft_print(struct output_ctx *octx, const char *fmt, ...) __attribute__((format(printf, 2, 3))); -int nft_gmp_print(struct output_ctx *octx, const char *fmt, ...) - __attribute__((format(printf, 2, 0))); +int nft_gmp_print(struct output_ctx *octx, const char *fmt, ...); int nft_optimize(struct nft_ctx *nft, struct list_head *cmds); #define __NFT_OUTPUT_NOTSUPP UINT_MAX +/* internal marker, not used by the kernel. */ +#define NFT_NEVER_TIMEOUT UINT64_MAX + #endif /* NFTABLES_NFTABLES_H */ |