summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Mares <mj@ucw.cz>1999-02-13 20:57:19 +0100
committerMartin Mares <mj@ucw.cz>1999-02-13 20:57:19 +0100
commit7f3d1a0850ff7f240b2f240db6d44b3a5dee6d48 (patch)
treedc75aebd466fc060c93f1a4d97bc4d9191416d81
parent4c9dd1e4b95e273eacc900abb63db4b8bafaf34b (diff)
downloadbird-7f3d1a0850ff7f240b2f240db6d44b3a5dee6d48.tar
bird-7f3d1a0850ff7f240b2f240db6d44b3a5dee6d48.zip
Squashed one bug in timing of route scans.
-rw-r--r--TODO8
-rw-r--r--sysdep/linux/krt-scan.c4
2 files changed, 6 insertions, 6 deletions
diff --git a/TODO b/TODO
index 5efbdef..ced47f2 100644
--- a/TODO
+++ b/TODO
@@ -5,22 +5,22 @@ Core
* cleanup debugging calls
* logging and tracing; use appropriate log levels
* check log calls for trailing newlines
+* check if all protocols set proper packet priorities and TTL's.
* replace all NUM's by expr's
- TOS not supported by kernel -> automatically drop routes with TOS<>0
+
- config: executable config files
+- config: define ipaddr constants?
+- config: better default protocol names
- fake multipath?
-- config file: define ipaddr constants?
- counters (according to SNMP MIB?)
- better memory allocators
- default preferences of protocols: prefer BGP over OSPF/RIP external routes?
- secondary addresses -> subinterfaces
-- check if all protocols set proper packet priorities and TTL's.
-- better default protocol names
- config: comments at end of line -> explicit ';' needed?
-- command-line arguments: name of config file
- static: check validity of route destination?
- static: device routes
diff --git a/sysdep/linux/krt-scan.c b/sysdep/linux/krt-scan.c
index 55ba3a8..1428a7a 100644
--- a/sysdep/linux/krt-scan.c
+++ b/sysdep/linux/krt-scan.c
@@ -310,7 +310,7 @@ krt_scan_ifaces_done(struct krt_proto *x)
SCANOPT;
SCANSTAT;
- s->accum_time += p->scan_time;
+ s->accum_time += ((struct krt_config *) x->p.cf)->ifopt.scan_time;
if (p->scan_time && s->accum_time >= p->scan_time)
{
s->accum_time %= p->scan_time;
@@ -322,7 +322,7 @@ krt_scan_ifaces_done(struct krt_proto *x)
void
krt_scan_preconfig(struct krt_config *c)
{
- c->scanopt.scan_time = 1;
+ c->scanopt.scan_time = 60;
c->scanopt.learn = 0;
}