From 45cb29a2ada4edfc2b547fe023d923ce0299a61d Mon Sep 17 00:00:00 2001 From: Pablo Neira Ayuso Date: Thu, 8 Aug 2019 00:30:28 +0200 Subject: src: remove global symbol_table Store symbol tables in context object instead. Use the nft_ctx object to store the dynamic symbol table. Pass it on to the parse_ctx object so this can be accessed from the parse routines. This dynamic symbol table is also accesible from the output_ctx object for print routines. Signed-off-by: Pablo Neira Ayuso --- include/ct.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'include/ct.h') diff --git a/include/ct.h b/include/ct.h index 063f8cdf..efb2d418 100644 --- a/include/ct.h +++ b/include/ct.h @@ -33,7 +33,8 @@ extern struct stmt *notrack_stmt_alloc(const struct location *loc); extern struct stmt *flow_offload_stmt_alloc(const struct location *loc, const char *table_name); extern const char *ct_dir2str(int dir); -extern const char *ct_label2str(unsigned long value); +extern const char *ct_label2str(const struct symbol_table *tbl, + unsigned long value); extern const struct datatype ct_dir_type; extern const struct datatype ct_state_type; -- cgit v1.2.3