summaryrefslogtreecommitdiffstats
path: root/nest
diff options
context:
space:
mode:
authorMartin Mares <mj@ucw.cz>2000-03-12 23:53:05 +0100
committerMartin Mares <mj@ucw.cz>2000-03-12 23:53:05 +0100
commitf098e072bec8d5858afbf713635217ea84c7e45d (patch)
treeebf4686d1346d3fabf8898d3ab12f21b8990b762 /nest
parent432709027680d7791b325b2c2116c658eba21c8d (diff)
downloadbird-f098e072bec8d5858afbf713635217ea84c7e45d.tar
bird-f098e072bec8d5858afbf713635217ea84c7e45d.zip
Fixed a bunch of FIXME's by removing them :)
Diffstat (limited to 'nest')
-rw-r--r--nest/proto.c2
-rw-r--r--nest/rt-table.c6
2 files changed, 6 insertions, 2 deletions
diff --git a/nest/proto.c b/nest/proto.c
index 7243fcd..937cda2 100644
--- a/nest/proto.c
+++ b/nest/proto.c
@@ -283,7 +283,7 @@ proto_rethink_goal(struct proto *p)
mb_free(p);
if (!nc)
return;
- p = proto_init(nc); /* FIXME: What about protocol priorities??? */
+ p = proto_init(nc);
}
/* Determine what state we want to reach */
diff --git a/nest/rt-table.c b/nest/rt-table.c
index f255a05..b959770 100644
--- a/nest/rt-table.c
+++ b/nest/rt-table.c
@@ -710,7 +710,11 @@ static void
rt_show_cont(struct cli *c)
{
struct rt_show_data *d = c->rover;
- unsigned max = 1; /* FIXME: After some debugging, increase to reasonable amount */
+#ifdef DEBUGGING
+ unsigned max = 4;
+#else
+ unsigned max = 64;
+#endif
struct fib *fib = &d->table->fib;
struct fib_iterator *it = &d->fit;