diff options
| author | Donald Sharp <sharpd@nvidia.com> | 2021-09-24 16:36:27 -0400 |
|---|---|---|
| committer | Donald Sharp <sharpd@nvidia.com> | 2021-09-27 12:38:08 -0400 |
| commit | d597533a9dcabc298a53112c22e94c0264cd3f39 (patch) | |
| tree | b86f06ee542b1f6920954687494336a60733cf5d /zebra/zebra_srte.c | |
| parent | 6cd9a93dddba199e68c73baca62337b704f32e14 (diff) | |
zebra: Start carrying safi for rnh processing
PIM is going to need to be able to send down the address it is
trying to resolve in the multicast rib. We need a way to signal
this to the end developer. Start the conversion by adding the
ability to have a safi. But only allow SAFI_UNICAST at the moment.
Signed-off-by: Donald Sharp <sharpd@nvidia.com>
Diffstat (limited to 'zebra/zebra_srte.c')
| -rw-r--r-- | zebra/zebra_srte.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/zebra/zebra_srte.c b/zebra/zebra_srte.c index 0fa054105e..d87b3149a6 100644 --- a/zebra/zebra_srte.c +++ b/zebra/zebra_srte.c @@ -196,7 +196,7 @@ static void zebra_sr_policy_notify_update(struct zebra_sr_policy *policy) exit(1); } - rnh = zebra_lookup_rnh(&p, zvrf_id(zvrf)); + rnh = zebra_lookup_rnh(&p, zvrf_id(zvrf), SAFI_UNICAST); if (!rnh) return; |
