diff options
author | Ondrej Filip <feela@network.cz> | 2000-05-31 16:06:33 +0200 |
---|---|---|
committer | Ondrej Filip <feela@network.cz> | 2000-05-31 16:06:33 +0200 |
commit | 70a383198ae08bed395f2a083c1bea5b37447705 (patch) | |
tree | 1a67b5135a041977a5928d5885f702718d28b21a /proto/ospf/lsalib.c | |
parent | aa185265f1cb310c053edb1a3bde28b4dab94964 (diff) | |
download | bird-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.c | 3 |
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); } } |