summaryrefslogtreecommitdiffstats
path: root/include/expression.h
diff options
context:
space:
mode:
authorPablo Neira Ayuso <pablo@netfilter.org>2020-07-07 14:31:33 +0200
committerPablo Neira Ayuso <pablo@netfilter.org>2020-07-08 11:23:19 +0200
commit8f56db64be3f2c57a196a5eaef0286ec71782950 (patch)
tree83d0b1af1db2133994ab15f170d17b6394e16c41 /include/expression.h
parent26d2f70c59f8c66d7cf1a016b74e3007c0e2c118 (diff)
src: use expression to store the log prefix
Intsead of using an array of char. Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'include/expression.h')
-rw-r--r--include/expression.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/expression.h b/include/expression.h
index 8135a516..87937a50 100644
--- a/include/expression.h
+++ b/include/expression.h
@@ -381,6 +381,8 @@ extern const struct datatype *expr_basetype(const struct expr *expr);
extern void expr_set_type(struct expr *expr, const struct datatype *dtype,
enum byteorder byteorder);
+void expr_to_string(const struct expr *expr, char *string);
+
struct eval_ctx;
extern int expr_binary_error(struct list_head *msgs,
const struct expr *e1, const struct expr *e2,