Searched refs:reply_msg (Results 1 – 1 of 1) sorted by relevance
1521 struct dhcp_msg *reply_msg = (struct dhcp_msg *)p->payload; in dhcp_recv() local1540 if (reply_msg->op != DHCP_BOOTREPLY) { in dhcp_recv()1541 …| LWIP_DBG_LEVEL_WARNING, ("not a DHCP reply message, but type %"U16_F"\n", (u16_t)reply_msg->op)); in dhcp_recv()1546 if (netif->hwaddr[i] != reply_msg->chaddr[i]) { in dhcp_recv()1549 (u16_t)i, (u16_t)netif->hwaddr[i], (u16_t)i, (u16_t)reply_msg->chaddr[i])); in dhcp_recv()1554 if (ntohl(reply_msg->xid) != dhcp->xid) { in dhcp_recv()1556 …("transaction id mismatch reply_msg->xid(%"X32_F")!=dhcp->xid(%"X32_F")\n",ntohl(reply_msg->xid),d… in dhcp_recv()