1
0
mirror of https://gitlab.labs.nic.cz/labs/bird.git synced 2024-05-11 16:54:54 +00:00

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.
This commit is contained in:
Ondrej Zajicek
2022-09-27 16:47:52 +02:00
parent da0b589e7b
commit 92a8565547
4 changed files with 25 additions and 3 deletions

View File

@@ -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)