diff options
-rw-r--r-- | nhrpd/nhrp_peer.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/nhrpd/nhrp_peer.c b/nhrpd/nhrp_peer.c index 74e502b21..a4c93bd2a 100644 --- a/nhrpd/nhrp_peer.c +++ b/nhrpd/nhrp_peer.c @@ -622,6 +622,10 @@ static void nhrp_handle_resolution_req(struct nhrp_packet_parser *pp) &pp->if_ad->addr); if (!cie) goto err; + cie->prefix_length = + 8 * sockunion_get_addrlen( + &pp->if_ad->addr); + cie->mtu = htons(pp->if_ad->mtu); nhrp_ext_complete(zb, ext); } |