Home | History | Annotate | Download | only in dhcpcd

Lines Matching refs:state

92 	iface->state->probes = 0;
93 iface->state->claims = 0;
95 iface->state->conflicts = 0;
102 if (iface->state->offer == NULL)
105 addr = iface->state->offer->yiaddr;
106 free(iface->state->offer);
115 iface->state->offer = find_ipv4ll_lease(addr);
117 iface->state->offer = make_ipv4ll_lease(addr);
118 iface->state->lease.frominfo = 0;
128 if (iface->state->fail.s_addr == iface->addr.s_addr) {
130 if (iface->state->defend + DEFEND_INTERVAL > up) {
135 iface->state->conflicts = -1;
139 iface->state->defend = up;
145 free(iface->state->offer);
146 iface->state->offer = NULL;
148 if (++iface->state->conflicts > MAX_CONFLICTS) {
151 iface->state->interval = RATE_LIMIT_INTERVAL / 2;