mirror of
https://github.com/lwip-tcpip/lwip.git
synced 2025-01-15 22:49:16 +00:00
Fixed bug #30159: WomnIP_ACCEPT_LINK_LAYER_ADDRESSING
This commit is contained in:
parent
72518a0d6e
commit
2ffcc52f03
@ -386,9 +386,9 @@ ip_input(struct pbuf *p, struct netif *inp)
|
||||
/* remote port is DHCP server? */
|
||||
if (IPH_PROTO(iphdr) == IP_PROTO_UDP) {
|
||||
struct udp_hdr *udphdr = (struct udp_hdr *)((u8_t *)iphdr + iphdr_hlen);
|
||||
u16_t dst_port = udphdr->dest;
|
||||
LWIP_DEBUGF(IP_DEBUG | LWIP_DBG_TRACE, ("ip_input: UDP packet to DHCP client port %"U16_F"\n",
|
||||
ntohs(udphdr->dest)));
|
||||
u16_t dst_port = udphdr->dest;
|
||||
if (IP_ACCEPT_LINK_LAYER_ADDRESSED_PORT(dst_port)) {
|
||||
LWIP_DEBUGF(IP_DEBUG | LWIP_DBG_TRACE, ("ip_input: DHCP packet accepted.\n"));
|
||||
netif = inp;
|
||||
|
Loading…
Reference in New Issue
Block a user