summaryrefslogtreecommitdiffstats
path: root/include/json.h
diff options
context:
space:
mode:
authorFlorian Westphal <fw@strlen.de>2018-08-29 11:37:39 +0200
committerFlorian Westphal <fw@strlen.de>2018-08-29 23:53:48 +0200
commit92029c1282958aad13eb8602c67b73caf2a08a09 (patch)
treebff7a62d56ba4fb33d3a44adcbfac1d3b726f95c /include/json.h
parent176d9ad8c351cff9f0c21da5b5f2848e4c77b249 (diff)
src: osf: add json support
Signed-off-by: Florian Westphal <fw@strlen.de>
Diffstat (limited to 'include/json.h')
-rw-r--r--include/json.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/json.h b/include/json.h
index b75512b8..78c026a7 100644
--- a/include/json.h
+++ b/include/json.h
@@ -40,6 +40,7 @@ json_t *hash_expr_json(const struct expr *expr, struct output_ctx *octx);
json_t *fib_expr_json(const struct expr *expr, struct output_ctx *octx);
json_t *constant_expr_json(const struct expr *expr, struct output_ctx *octx);
json_t *socket_expr_json(const struct expr *expr, struct output_ctx *octx);
+json_t *osf_expr_json(const struct expr *expr, struct output_ctx *octx);
json_t *integer_type_json(const struct expr *expr, struct output_ctx *octx);
json_t *string_type_json(const struct expr *expr, struct output_ctx *octx);
@@ -118,6 +119,7 @@ EXPR_PRINT_STUB(hash_expr)
EXPR_PRINT_STUB(fib_expr)
EXPR_PRINT_STUB(constant_expr)
EXPR_PRINT_STUB(socket_expr)
+EXPR_PRINT_STUB(osf_expr)
EXPR_PRINT_STUB(integer_type)
EXPR_PRINT_STUB(string_type)