From 84a1305437ddd893771c43d1a9bff32260a56789 Mon Sep 17 00:00:00 2001 From: Pavel Machek Date: Wed, 10 May 2000 12:26:09 +0000 Subject: Send first udpate sooner. --- proto/rip/rip.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'proto') diff --git a/proto/rip/rip.c b/proto/rip/rip.c index 52dce5d..6a03ae0 100644 --- a/proto/rip/rip.c +++ b/proto/rip/rip.c @@ -241,7 +241,7 @@ rip_rte_update_if_better(rtable *tab, net *net, struct proto *p, rte *new) rte *old; 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); } @@ -465,8 +465,6 @@ rip_timer(timer *t) DBG( "RIP: Broadcasting routing tables\n" ); { struct rip_interface *rif; - P->tx_count ++; - WALK_LIST( rif, P->interfaces ) { struct iface *iface = rif->iface; @@ -477,6 +475,7 @@ rip_timer(timer *t) rif->triggered = (P->tx_count % 6); rip_sendto( p, IPA_NONE, 0, rif ); } + P->tx_count ++; } DBG( "RIP: tick tock done\n" ); -- cgit v1.2.3