forked from Mirror/frr
*: Modify notify_owner to route_notify_owner
In the future we are going to have a rule_notify_owner so make the distinction between the two types of notification clearer. Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
This commit is contained in:
parent
9a9f89267a
commit
28b11f8106
|
@ -94,7 +94,7 @@ static int eigrp_router_id_update_zebra(int command, struct zclient *zclient,
|
|||
return 0;
|
||||
}
|
||||
|
||||
static int eigrp_zebra_notify_owner(int command, struct zclient *zclient,
|
||||
static int eigrp_zebra_route_notify_owner(int command, struct zclient *zclient,
|
||||
zebra_size_t length, vrf_id_t vrf_id)
|
||||
{
|
||||
struct prefix p;
|
||||
|
@ -129,7 +129,7 @@ void eigrp_zebra_init(void)
|
|||
zclient->interface_address_delete = eigrp_interface_address_delete;
|
||||
zclient->redistribute_route_add = eigrp_zebra_read_route;
|
||||
zclient->redistribute_route_del = eigrp_zebra_read_route;
|
||||
zclient->notify_owner = eigrp_zebra_notify_owner;
|
||||
zclient->route_notify_owner = eigrp_zebra_route_notify_owner;
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -2369,9 +2369,9 @@ static int zclient_read(struct thread *thread)
|
|||
vrf_id);
|
||||
break;
|
||||
case ZEBRA_ROUTE_NOTIFY_OWNER:
|
||||
if (zclient->notify_owner)
|
||||
(*zclient->notify_owner)(command, zclient,
|
||||
length, vrf_id);
|
||||
if (zclient->route_notify_owner)
|
||||
(*zclient->route_notify_owner)(command, zclient, length,
|
||||
vrf_id);
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
|
|
|
@ -213,7 +213,7 @@ struct zclient {
|
|||
int (*local_macip_add)(int, struct zclient *, uint16_t, vrf_id_t);
|
||||
int (*local_macip_del)(int, struct zclient *, uint16_t, vrf_id_t);
|
||||
int (*pw_status_update)(int, struct zclient *, uint16_t, vrf_id_t);
|
||||
int (*notify_owner)(int command, struct zclient *zclient,
|
||||
int (*route_notify_owner)(int command, struct zclient *zclient,
|
||||
uint16_t length, vrf_id_t vrf_id);
|
||||
};
|
||||
|
||||
|
|
|
@ -131,7 +131,7 @@ static int interface_state_down(int command, struct zclient *zclient,
|
|||
extern uint32_t total_routes;
|
||||
extern uint32_t installed_routes;
|
||||
|
||||
static int notify_owner(int command, struct zclient *zclient,
|
||||
static int route_notify_owner(int command, struct zclient *zclient,
|
||||
zebra_size_t length, vrf_id_t vrf_id)
|
||||
{
|
||||
struct prefix p;
|
||||
|
@ -211,5 +211,5 @@ void sharp_zebra_init(void)
|
|||
zclient->interface_down = interface_state_down;
|
||||
zclient->interface_address_add = interface_address_add;
|
||||
zclient->interface_address_delete = interface_address_delete;
|
||||
zclient->notify_owner = notify_owner;
|
||||
zclient->route_notify_owner = route_notify_owner;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue