diff options
author | David Lamparter <equinox@opensourcerouting.org> | 2022-04-26 14:52:53 +0200 |
---|---|---|
committer | David Lamparter <equinox@opensourcerouting.org> | 2022-04-26 16:15:00 +0200 |
commit | 34ee41c6c94193c5392bd5fda3f469c62dd127ad (patch) | |
tree | bf75ae40698eeb5360a6dd9ce4614ffb572a0050 /lib/zclient.h | |
parent | zebra: add rib_match_ipv6_multicast variant (diff) | |
download | frr-34ee41c6c94193c5392bd5fda3f469c62dd127ad.tar.xz frr-34ee41c6c94193c5392bd5fda3f469c62dd127ad.zip |
zebra, pimd: add AF param on NEXTHOP_LOOKUP_MRIB
By changing this API call to use a `struct ipaddr`, which encodes the
type of IP address with it. (And rename/remove the `IPV4` from the
command name.)
Also add a comment explaining that this function call is going to be
obsolete in the long run since pimd needs to move to proper MRIB NHT.
Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
Diffstat (limited to 'lib/zclient.h')
-rw-r--r-- | lib/zclient.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/zclient.h b/lib/zclient.h index 7e1283d83..78eb73c53 100644 --- a/lib/zclient.h +++ b/lib/zclient.h @@ -143,7 +143,7 @@ typedef enum { ZEBRA_BFD_CLIENT_DEREGISTER, ZEBRA_INTERFACE_ENABLE_RADV, ZEBRA_INTERFACE_DISABLE_RADV, - ZEBRA_IPV4_NEXTHOP_LOOKUP_MRIB, + ZEBRA_NEXTHOP_LOOKUP_MRIB, ZEBRA_INTERFACE_LINK_PARAMS, ZEBRA_MPLS_LABELS_ADD, ZEBRA_MPLS_LABELS_DELETE, |