Thanks to Bernardo Figueiredo and Israel G. Lugo for the bugreport.
ifa->flood_queue = mb_allocz(ifa->pool, ifa->flood_queue_size * sizeof(void *));
}
- /* Do iface UP, unless there is no link and we use link detection */
- ospf_iface_sm(ifa, (ifa->check_link && !(ifa->iface->flags & IF_LINK_UP)) ? ISM_LOOP : ISM_UP);
+ /* Do iface UP, unless there is no link (then wait in LOOP state) */
+ if (!ifa->check_link || (ifa->iface->flags & IF_LINK_UP))
+ ospf_iface_sm(ifa, ISM_UP);
+ else
+ ospf_iface_chstate(ifa, OSPF_IS_LOOP);
}
static inline void
const char *err_dsc = NULL;
uint err_val = 0;
+ /* Should not happen */
+ if (ifa->state <= OSPF_IS_LOOP)
+ return 1;
+
int src_local, dst_local, dst_mcast;
src_local = ipa_in_net(sk->faddr, ifa->addr->prefix, ifa->addr->pxlen);
dst_local = ipa_equal(sk->laddr, ifa->addr->ip);