summaryrefslogtreecommitdiffstats
path: root/proto/ospf/lsalib.c
diff options
context:
space:
mode:
authorOndrej Filip <feela@network.cz>2000-05-31 16:06:33 +0200
committerOndrej Filip <feela@network.cz>2000-05-31 16:06:33 +0200
commit70a383198ae08bed395f2a083c1bea5b37447705 (patch)
tree1a67b5135a041977a5928d5885f702718d28b21a /proto/ospf/lsalib.c
parentaa185265f1cb310c053edb1a3bde28b4dab94964 (diff)
downloadbird-70a383198ae08bed395f2a083c1bea5b37447705.tar
bird-70a383198ae08bed395f2a083c1bea5b37447705.zip
LSArt origination and routing table calculation is now not doing so
often. Instead of calculation I just schedule it latter.
Diffstat (limited to 'proto/ospf/lsalib.c')
-rw-r--r--proto/ospf/lsalib.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/proto/ospf/lsalib.c b/proto/ospf/lsalib.c
index 91a73f0..d462bbd 100644
--- a/proto/ospf/lsalib.c
+++ b/proto/ospf/lsalib.c
@@ -400,8 +400,7 @@ lsa_install_new(struct ospf_lsa_header *lsa, void *body, struct ospf_area *oa,
/* FIXME decide if route calculation must be done and how */
if(oa->rt!=NULL)
{
- DBG("Starting routing table calculation.\n");
- ospf_rt_spfa(oa);
+ schedule_rtcalc(oa);
}
}