mirror of
https://github.com/lwip-tcpip/lwip.git
synced 2024-12-26 12:13:47 +00:00
Fixed bug #51623: DHCP request XID should probably be regenerated for INIT-REBOOT
This commit is contained in:
parent
2b2ea50cb1
commit
a81b19aa62
@ -744,7 +744,7 @@ dhcp_start(struct netif *netif)
|
|||||||
|
|
||||||
/* no DHCP client attached yet? */
|
/* no DHCP client attached yet? */
|
||||||
if (dhcp == NULL) {
|
if (dhcp == NULL) {
|
||||||
LWIP_DEBUGF(DHCP_DEBUG | LWIP_DBG_TRACE, ("dhcp_start(): starting new DHCP client\n"));
|
LWIP_DEBUGF(DHCP_DEBUG | LWIP_DBG_TRACE, ("dhcp_start(): mallocing new DHCP client\n"));
|
||||||
dhcp = (struct dhcp *)mem_malloc(sizeof(struct dhcp));
|
dhcp = (struct dhcp *)mem_malloc(sizeof(struct dhcp));
|
||||||
if (dhcp == NULL) {
|
if (dhcp == NULL) {
|
||||||
LWIP_DEBUGF(DHCP_DEBUG | LWIP_DBG_TRACE, ("dhcp_start(): could not allocate dhcp\n"));
|
LWIP_DEBUGF(DHCP_DEBUG | LWIP_DBG_TRACE, ("dhcp_start(): could not allocate dhcp\n"));
|
||||||
@ -1851,7 +1851,7 @@ dhcp_create_msg(struct netif *netif, struct dhcp *dhcp, u8_t message_type)
|
|||||||
(dhcp->p_out->len >= sizeof(struct dhcp_msg)));
|
(dhcp->p_out->len >= sizeof(struct dhcp_msg)));
|
||||||
|
|
||||||
/* DHCP_REQUEST should reuse 'xid' from DHCPOFFER */
|
/* DHCP_REQUEST should reuse 'xid' from DHCPOFFER */
|
||||||
if (message_type != DHCP_REQUEST) {
|
if ((message_type != DHCP_REQUEST) || (dhcp->state == DHCP_STATE_REBOOTING)) {
|
||||||
/* reuse transaction identifier in retransmissions */
|
/* reuse transaction identifier in retransmissions */
|
||||||
if (dhcp->tries == 0) {
|
if (dhcp->tries == 0) {
|
||||||
#if DHCP_CREATE_RAND_XID && defined(LWIP_RAND)
|
#if DHCP_CREATE_RAND_XID && defined(LWIP_RAND)
|
||||||
|
Loading…
Reference in New Issue
Block a user