Actions
Bug #2005
closedA router's SyncLogicHandler should not fetch LSAs for itself
Start date:
09/23/2014
Due date:
% Done:
100%
Estimated time:
Description
Currently, SyncLogicHandler checks the router name in an update against the router prefix in the configuration file.
if (routerName != pnlsr.getConfParameter().getRouterPrefix())
But, routerName does not include the network while getRouterPrefix() does. Thus, the conditional will always evaluate to true.
Instead, the network should be prepended to the routerName before the check.
Actions