Skip to content
Snippets Groups Projects
Commit 12dd8dc8 authored by Ondřej Filip's avatar Ondřej Filip
Browse files

Bugfix - nasty bug in router LSA origination - Router did not describe all interfaces.

parent 621ccdfe
Branches
Tags
No related merge requests found
......@@ -94,7 +94,10 @@ originate_rt_lsa_body(struct ospf_area *oa, u16 * length)
ln->data = 0xffffffff;
}
else
{
ln--;
i--; /* No link added */
}
}
break;
case OSPF_IT_BCAST:
......@@ -146,10 +149,19 @@ originate_rt_lsa_body(struct ospf_area *oa, u16 * length)
rt->veb.bit.v = 1;
}
else
{
ln--;
i--; /* No link added */
}
break;
default:
ln--;
i--; /* No link added */
log("Unknown interface type");
break;
}
}
ln++;
}
rt->links = i;
*length = i * sizeof(struct ospf_lsa_rt_link) + sizeof(struct ospf_lsa_rt) +
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment