X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fodhcpd.git;a=blobdiff_plain;f=src%2Fdhcpv6-ia.c;h=17294f09fe580d05c3fd74377bbb508e9bd629d3;hp=e1d0278e013c56a03e9d7ae2bd2d73ef0e92edff;hb=13937ab37916cd983cf89ab215cd9f7221633d8c;hpb=60c396937959aff9b5358e7a5ab788f0f5f30ed4 diff --git a/src/dhcpv6-ia.c b/src/dhcpv6-ia.c index e1d0278..17294f0 100644 --- a/src/dhcpv6-ia.c +++ b/src/dhcpv6-ia.c @@ -640,10 +640,9 @@ static void reconf_timer(struct uloop_timeout *event) list_for_each_entry_safe(a, n, &iface->ia_assignments, head) { if (!INFINITE_VALID(a->valid_until) && a->valid_until < now) { if ((a->length < 128 && a->clid_len > 0) || - (a->length == 128 && a->clid_len == 0)) { - list_del(&a->head); + (a->length == 128 && a->clid_len == 0)) free_dhcpv6_assignment(a); - } + } else if (a->reconf_cnt > 0 && a->reconf_cnt < 8 && now > a->reconf_sent + (1 << a->reconf_cnt)) { ++a->reconf_cnt;