summaryrefslogtreecommitdiffstats
path: root/include/parser.h
diff options
context:
space:
mode:
authorPhil Sutter <phil@nwl.cc>2018-04-13 16:52:34 +0200
committerPablo Neira Ayuso <pablo@netfilter.org>2018-04-14 13:53:02 +0200
commit778de37d82e7bc90b4ba2abdfb0ebc8ddb2e7302 (patch)
tree6dd8a979e615db7fb9c4f165b0011e5ec2a6efc1 /include/parser.h
parentfd9b62f6fdace59be247008b67506abb82bbf4a8 (diff)
libnftables: Keep cmds list outside of parser_state
Parser basically turns input into a list of commands and error messages. Having the commands list being part of struct parser_state does not make sense from this point of view, also it will have to go away with upcoming JSON support anyway. While being at it, change nft_netlink() to take just the list of commands instead of the whole parser state as parameter, also take care of command freeing in nft_run_cmd_from_* functions (where the list resides as auto-variable) instead of from inside nft_run(). 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.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/include/parser.h b/include/parser.h
index 0bdb3fa8..79612757 100644
--- a/include/parser.h
+++ b/include/parser.h
@@ -25,7 +25,7 @@ struct parser_state {
struct scope *scopes[SCOPE_NEST_MAX];
unsigned int scope;
- struct list_head cmds;
+ struct list_head *cmds;
struct eval_ctx ectx;
};
@@ -33,7 +33,8 @@ struct mnl_socket;
extern void parser_init(struct mnl_socket *nf_sock, struct nft_cache *cache,
struct parser_state *state, struct list_head *msgs,
- unsigned int debug_level, struct output_ctx *octx);
+ struct list_head *cmds, unsigned int debug_level,
+ struct output_ctx *octx);
extern int nft_parse(struct nft_ctx *ctx, void *, struct parser_state *state);
extern void *scanner_init(struct parser_state *state);