Home
last modified time | relevance | path

Searched refs:listdls6 (Results 1 – 1 of 1) sorted by relevance

/external/toybox/toys/pending/
Ddhcpd.c1484 struct arg_list *listdls6 = gstate.dleases, *tmp = NULL; in getip6_from_pool() local
1486 while(listdls6) { in getip6_from_pool()
1487 if (!memcmp(((dyn_lease6*)listdls6->arg)->duid, duid, duid_len)) { in getip6_from_pool()
1488 memcpy(nip6, ((dyn_lease6*)listdls6->arg)->lease_nip6, sizeof(nip6)); in getip6_from_pool()
1489 if(tmp) tmp->next = listdls6->next; in getip6_from_pool()
1490 else gstate.dleases = listdls6->next; in getip6_from_pool()
1491 free(listdls6->arg); in getip6_from_pool()
1492 free(listdls6); in getip6_from_pool()
1498 tmp = listdls6; in getip6_from_pool()
1499 listdls6 = listdls6->next; in getip6_from_pool()