mirror of
https://gitlab.nic.cz/labs/bird.git
synced 2024-11-10 05:08:42 +00:00
Send first udpate sooner.
This commit is contained in:
parent
14758d87c4
commit
84a1305437
@ -241,7 +241,7 @@ rip_rte_update_if_better(rtable *tab, net *net, struct proto *p, rte *new)
|
|||||||
rte *old;
|
rte *old;
|
||||||
|
|
||||||
old = rte_find(net, p);
|
old = rte_find(net, p);
|
||||||
if (!old || rip_rte_better(new, old))
|
if (!old || p->rte_better(new, old))
|
||||||
rte_update(tab, net, p, new);
|
rte_update(tab, net, p, new);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -465,8 +465,6 @@ rip_timer(timer *t)
|
|||||||
DBG( "RIP: Broadcasting routing tables\n" );
|
DBG( "RIP: Broadcasting routing tables\n" );
|
||||||
{
|
{
|
||||||
struct rip_interface *rif;
|
struct rip_interface *rif;
|
||||||
P->tx_count ++;
|
|
||||||
|
|
||||||
WALK_LIST( rif, P->interfaces ) {
|
WALK_LIST( rif, P->interfaces ) {
|
||||||
struct iface *iface = rif->iface;
|
struct iface *iface = rif->iface;
|
||||||
|
|
||||||
@ -477,6 +475,7 @@ rip_timer(timer *t)
|
|||||||
rif->triggered = (P->tx_count % 6);
|
rif->triggered = (P->tx_count % 6);
|
||||||
rip_sendto( p, IPA_NONE, 0, rif );
|
rip_sendto( p, IPA_NONE, 0, rif );
|
||||||
}
|
}
|
||||||
|
P->tx_count ++;
|
||||||
}
|
}
|
||||||
|
|
||||||
DBG( "RIP: tick tock done\n" );
|
DBG( "RIP: tick tock done\n" );
|
||||||
|
Loading…
Reference in New Issue
Block a user