summaryrefslogtreecommitdiffstats
path: root/include/parser.h
diff options
context:
space:
mode:
authorPhil Sutter <phil@nwl.cc>2018-04-13 16:52:35 +0200
committerPablo Neira Ayuso <pablo@netfilter.org>2018-04-14 13:53:02 +0200
commit2b8f691bd43db5ee120d3d73b1bac6643773b7dc (patch)
tree37c5cbcbb3e05862bf1a9075fc74356b3624f386 /include/parser.h
parent778de37d82e7bc90b4ba2abdfb0ebc8ddb2e7302 (diff)
parser_bison: Pass struct nft_ctx to parser_init()
Signature of parser_init() got quite huge, so simply pass the whole context pointer to it - most of the parameters are just taken from there anyway. Signed-off-by: Phil Sutter <phil@nwl.cc> Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'include/parser.h')
-rw-r--r--include/parser.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/include/parser.h b/include/parser.h
index 79612757..ea41ca03 100644
--- a/include/parser.h
+++ b/include/parser.h
@@ -31,10 +31,8 @@ struct parser_state {
struct mnl_socket;
-extern void parser_init(struct mnl_socket *nf_sock, struct nft_cache *cache,
- struct parser_state *state, struct list_head *msgs,
- struct list_head *cmds, unsigned int debug_level,
- struct output_ctx *octx);
+extern void parser_init(struct nft_ctx *nft, struct parser_state *state,
+ struct list_head *msgs, struct list_head *cmds);
extern int nft_parse(struct nft_ctx *ctx, void *, struct parser_state *state);
extern void *scanner_init(struct parser_state *state);