Skip to content

Commit

Permalink
Merge pull request #16820 from FRRouting/mergify/bp/stable/10.0/pr-16808
Browse files Browse the repository at this point in the history
nhrpd: fixes duplicate auth extension (backport #16808)
  • Loading branch information
donaldsharp authored Sep 13, 2024
2 parents a8f4d8c + 57835b9 commit 212e152
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions nhrpd/nhrp_peer.c
Original file line number Diff line number Diff line change
Expand Up @@ -597,6 +597,12 @@ static void nhrp_handle_resolution_req(struct nhrp_packet_parser *pp)
nhrp_ext_complete(zb, ext);
}
break;
case NHRP_EXTENSION_AUTHENTICATION:
/* Extensions can be copied from original packet except
* authentication extension which must be regenerated
* hop by hop.
*/
break;
default:
if (nhrp_ext_reply(zb, hdr, ifp, ext, &payload) < 0)
goto err;
Expand Down

0 comments on commit 212e152

Please sign in to comment.