From 8c943173ced1fb85c627a8ba1c3d7360eab7d22b Mon Sep 17 00:00:00 2001 From: Martin Mares Date: Tue, 3 Aug 1999 19:33:45 +0000 Subject: [PATCH] Allow announces of rte's to protocols in FS_FEEDING state. Else, we would get chicken-egg problems in the table-to-table protocol. --- nest/rt-table.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nest/rt-table.c b/nest/rt-table.c index f8c4e777..7207160c 100644 --- a/nest/rt-table.c +++ b/nest/rt-table.c @@ -142,7 +142,7 @@ rte_announce(rtable *tab, net *net, rte *new, rte *old, ea_list *tmpa) WALK_LIST(a, tab->hooks) { - ASSERT(a->proto->core_state == FS_HAPPY); + ASSERT(a->proto->core_state == FS_HAPPY || a->proto->core_state == FS_FEEDING); do_rte_announce(a, net, new, old, tmpa); } }