Home
last modified time | relevance | path

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

/third_party/lwip/src/core/ipv4/
Ddhcp.c450 if (dhcp->t0_timeout && (++dhcp->lease_used == dhcp->t0_timeout)) {
488 if (dhcp->t0_timeout > 0) {
489 if (dhcp->t0_timeout > dhcp->lease_used) {
490 SET_TMR_TICK(tick, dhcp->t0_timeout - dhcp->lease_used);
660 …if (((dhcp->t0_timeout - dhcp->lease_used) / 2) >= ((60 + DHCP_COARSE_TIMER_SECS / 2) / DHCP_COARS…
661 dhcp->t2_rebind_time = (u16_t)((dhcp->t0_timeout - dhcp->lease_used) / 2);
1133 dhcp->t0_timeout = (u16_t)timeout;
1134 if (dhcp->t0_timeout == 0) {
1135 dhcp->t0_timeout = 1;
1411 dhcp->t1_renew_time = dhcp->t2_rebind_time = dhcp->lease_used = dhcp->t0_timeout = 0;
/third_party/lwip/src/include/lwip/
Ddhcp.h123 u16_t t0_timeout; /* #ticks with period DHCP_COARSE_TIMER_SECS for lease time */ member