X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fodhcpd.git;a=blobdiff_plain;f=src%2Frouter.c;h=faf9e9d03c6be3d8ce0c659e4a193b9127d43242;hp=a31bf4e0f2584b8bb8b6febc535410ad67a36867;hb=e4504db88c5b501142cc97a08876d924d673f605;hpb=9dd5316deae6402de68ddc8a08d1a6b496101828 diff --git a/src/router.c b/src/router.c index a31bf4e..faf9e9d 100644 --- a/src/router.c +++ b/src/router.c @@ -260,7 +260,7 @@ static uint64_t send_router_advert(struct interface *iface, const struct in6_add { time_t now = odhcpd_time(); uint32_t mtu = iface->ra_mtu; - int hlim = odhcpd_get_interface_config(iface->ifname, "hop_limit"); + int hlim = iface->ra_hoplimit; if (mtu == 0) mtu = odhcpd_get_interface_config(iface->ifname, "mtu"); @@ -268,6 +268,9 @@ static uint64_t send_router_advert(struct interface *iface, const struct in6_add if (mtu < 1280) mtu = 1280; + if (hlim == 0) + hlim = odhcpd_get_interface_config(iface->ifname, "hop_limit"); + struct { struct nd_router_advert h; struct icmpv6_opt lladdr;