Skip to content

Commit 0c96d4a

Browse files
committed
Fix Dropping ARP Packets
1 parent 5d9a53e commit 0c96d4a

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

source/portable/NetworkInterface/STM32/NetworkInterface.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1719,8 +1719,7 @@ static BaseType_t prvAcceptPacket( const NetworkBufferDescriptor_t * const pxDes
17191719

17201720
if( ( ulRxDesc & ETH_IP_PAYLOAD_MASK ) == ETH_IP_PAYLOAD_UNKNOWN )
17211721
{
1722-
iptraceETHERNET_RX_EVENT_LOST();
1723-
break;
1722+
/* Likely ARP */
17241723
}
17251724
else if( ( ulRxDesc & ETH_IP_PAYLOAD_MASK ) == ETH_IP_PAYLOAD_UDP )
17261725
{

0 commit comments

Comments
 (0)