Merge branch 'bugfix/fix_dhcp_rebind_error_proc_lost' into 'release/v3.3'

fix(lwip): fix DHCP rebind timeout has no process

See merge request sdk/ESP8266_RTOS_SDK!1369
This commit is contained in:
Dong Heng
2020-04-21 12:36:20 +08:00

View File

@ -518,6 +518,8 @@ dhcp_timeout(struct netif *netif)
} else {
dhcp_discover(netif);
}
} else if (dhcp->state == DHCP_STATE_REBINDING) {
dhcp->t2_rebind_time = 1;
}
}