diff options
author | Ondrej Zajicek <santiago@crfreenet.org> | 2022-09-27 16:47:52 +0200 |
---|---|---|
committer | Ondrej Zajicek <santiago@crfreenet.org> | 2022-10-03 20:18:12 +0200 |
commit | 92a856554780c262f188acb4cdcee363bf6dd1bb (patch) | |
tree | e8e847cd28c19195ba83ca7cfc23d3c7923b82ba /filter/data.c | |
parent | da0b589e7bbcd8177702caa925063d36e7f316ec (diff) |
Filter: Add some minor functions for f_tree and EC
Add some supportive functions for f_tree and EC. These functions are used
by L3VPN code.
Diffstat (limited to 'filter/data.c')
-rw-r--r-- | filter/data.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/filter/data.c b/filter/data.c index 87c438fc..56d746fd 100644 --- a/filter/data.c +++ b/filter/data.c @@ -336,7 +336,7 @@ clist_set_type(const struct f_tree *set, struct f_val *v) } } -static int +int clist_match_set(const struct adata *clist, const struct f_tree *set) { if (!clist) @@ -357,7 +357,7 @@ clist_match_set(const struct adata *clist, const struct f_tree *set) return 0; } -static int +int eclist_match_set(const struct adata *list, const struct f_tree *set) { if (!list) @@ -381,7 +381,7 @@ eclist_match_set(const struct adata *list, const struct f_tree *set) return 0; } -static int +int lclist_match_set(const struct adata *list, const struct f_tree *set) { if (!list) |