summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--proto/ospf/hello.c2
-rw-r--r--proto/ospf/ospf.h2
-rw-r--r--proto/ospf/topology.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/proto/ospf/hello.c b/proto/ospf/hello.c
index ef9bf59..dd8f975 100644
--- a/proto/ospf/hello.c
+++ b/proto/ospf/hello.c
@@ -119,7 +119,7 @@ ospf_hello_rx(struct ospf_hello_packet *ps, struct proto *p,
n->ackd_timer->data=n;
n->ackd_timer->randomize=0;
n->ackd_timer->hook=ackd_timer_hook;
- n->ackd_timer->recurrent=ifa->rxmtint/2; /* FIXME use some config? */
+ n->ackd_timer->recurrent=ifa->rxmtint/2;
DBG("%s: Installing ackd timer.\n", p->name);
}
ospf_neigh_sm(n, INM_HELLOREC);
diff --git a/proto/ospf/ospf.h b/proto/ospf/ospf.h
index 3694cda..443eec0 100644
--- a/proto/ospf/ospf.h
+++ b/proto/ospf/ospf.h
@@ -51,7 +51,7 @@
#define MINLSINTERVAL 5
#define MINLSARRIVAL 1
#define LSINFINITY 0xffff /* RFC says 0xffffff ??? */
-#define DISPTICK 7 /* FIXME What's good value? */
+#define DISPTICK 7
struct ospf_config {
struct proto_config c;
diff --git a/proto/ospf/topology.c b/proto/ospf/topology.c
index bf90899..3b3f806 100644
--- a/proto/ospf/topology.c
+++ b/proto/ospf/topology.c
@@ -12,7 +12,7 @@
#include "ospf.h"
-#define HASH_DEF_ORDER 6 /* FIXME: Increase */
+#define HASH_DEF_ORDER 20
#define HASH_HI_MARK *4
#define HASH_HI_STEP 2
#define HASH_HI_MAX 16