Skip to content

Commit

Permalink
Merge pull request FRRouting#16050 from rgirada/ospfv3_helper
Browse files Browse the repository at this point in the history
ospf6d: Handling Topo Change in GR-HELPER mode for max-age lsas
  • Loading branch information
riw777 authored Jun 11, 2024
2 parents 89afc70 + a41b484 commit b436e96
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions ospf6d/ospf6_flood.c
Original file line number Diff line number Diff line change
Expand Up @@ -295,9 +295,7 @@ void ospf6_install_lsa(struct ospf6_lsa *lsa)
lsa->installed = now;

/* Topo change handling */
if (CHECK_LSA_TOPO_CHG_ELIGIBLE(ntohs(lsa->header->type))
&& !CHECK_FLAG(lsa->flag, OSPF6_LSA_DUPLICATE)) {

if (CHECK_LSA_TOPO_CHG_ELIGIBLE(ntohs(lsa->header->type))) {
/* check if it is new lsa ? or existing lsa got modified ?*/
if (!old || OSPF6_LSA_IS_CHANGED(old, lsa))
ospf6_helper_handle_topo_chg(ospf6, lsa);
Expand Down

0 comments on commit b436e96

Please sign in to comment.