diff options
author | Mark Stapp <mjs@voltanet.io> | 2021-01-11 19:53:42 +0100 |
---|---|---|
committer | Mark Stapp <mjs@voltanet.io> | 2021-01-21 16:13:57 +0100 |
commit | f5b7e50f9a5d33a04ecf040dddbd6b05ae9dfda5 (patch) | |
tree | 687c580cf1a8901030993dbd3cd2b729189f47b9 /zebra/zebra_routemap.h | |
parent | libs,zebra: remove zapi nhg encode and decode public apis (diff) | |
download | frr-f5b7e50f9a5d33a04ecf040dddbd6b05ae9dfda5.tar.xz frr-f5b7e50f9a5d33a04ecf040dddbd6b05ae9dfda5.zip |
zebra: use afi_t for route-map address family arg
Use afi_t in the route_map_check api
Signed-off-by: Mark Stapp <mjs@voltanet.io>
Diffstat (limited to 'zebra/zebra_routemap.h')
-rw-r--r-- | zebra/zebra_routemap.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/zebra/zebra_routemap.h b/zebra/zebra_routemap.h index 251e07af7..c016d9587 100644 --- a/zebra/zebra_routemap.h +++ b/zebra/zebra_routemap.h @@ -42,7 +42,7 @@ zebra_import_table_route_map_check(int family, int rib_type, uint8_t instance, struct nexthop *nexthop, vrf_id_t vrf_id, route_tag_t tag, const char *rmap_name); extern route_map_result_t -zebra_route_map_check(int family, int rib_type, uint8_t instance, +zebra_route_map_check(afi_t family, int rib_type, uint8_t instance, const struct prefix *p, struct nexthop *nexthop, struct zebra_vrf *zvrf, route_tag_t tag); extern route_map_result_t |