Skip to content

Commit a46b819

Browse files
committed
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
2 parents 6799c82 + 8671077 commit a46b819

File tree

1 file changed

+2
-0
lines changed
  • components/lwip/lwip/src/core/ipv4

1 file changed

+2
-0
lines changed

components/lwip/lwip/src/core/ipv4/dhcp.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -518,6 +518,8 @@ dhcp_timeout(struct netif *netif)
518518
} else {
519519
dhcp_discover(netif);
520520
}
521+
} else if (dhcp->state == DHCP_STATE_REBINDING) {
522+
dhcp->t2_rebind_time = 1;
521523
}
522524
}
523525

0 commit comments

Comments
 (0)