mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-08-09 03:47:47 +00:00
Merge pull request #5602 from donaldsharp/ripng_redistribute
Rip redistribute fixes
This commit is contained in:
commit
d872f01100
@ -151,8 +151,8 @@ static int rip_zebra_read_route(ZAPI_CALLBACK_ARGS)
|
|||||||
|
|
||||||
void rip_redistribute_conf_update(struct rip *rip, int type)
|
void rip_redistribute_conf_update(struct rip *rip, int type)
|
||||||
{
|
{
|
||||||
zclient_redistribute(ZEBRA_REDISTRIBUTE_ADD, zclient, AFI_IP, type,
|
zebra_redistribute_send(ZEBRA_REDISTRIBUTE_ADD, zclient, AFI_IP,
|
||||||
0, rip->vrf->vrf_id);
|
type, 0, rip->vrf->vrf_id);
|
||||||
}
|
}
|
||||||
|
|
||||||
void rip_redistribute_conf_delete(struct rip *rip, int type)
|
void rip_redistribute_conf_delete(struct rip *rip, int type)
|
||||||
|
@ -152,8 +152,8 @@ static int ripng_zebra_read_route(ZAPI_CALLBACK_ARGS)
|
|||||||
|
|
||||||
void ripng_redistribute_conf_update(struct ripng *ripng, int type)
|
void ripng_redistribute_conf_update(struct ripng *ripng, int type)
|
||||||
{
|
{
|
||||||
zclient_redistribute(ZEBRA_REDISTRIBUTE_ADD, zclient, AFI_IP6, type, 0,
|
zebra_redistribute_send(ZEBRA_REDISTRIBUTE_ADD, zclient, AFI_IP6,
|
||||||
ripng->vrf->vrf_id);
|
type, 0, ripng->vrf->vrf_id);
|
||||||
}
|
}
|
||||||
|
|
||||||
void ripng_redistribute_conf_delete(struct ripng *ripng, int type)
|
void ripng_redistribute_conf_delete(struct ripng *ripng, int type)
|
||||||
|
Loading…
Reference in New Issue
Block a user