File tree Expand file tree Collapse file tree 2 files changed +1
-4
lines changed Expand file tree Collapse file tree 2 files changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -321,9 +321,7 @@ enum eFrameProcessingResult prvAllowIPPacketIPv4( const struct xIP_PACKET * cons
321321 ( FreeRTOS_FindEndPointOnIP_IPv4 ( ulDestinationIPAddress ) == NULL ) &&
322322 /* Is it an IPv4 broadcast address x.x.x.255 ? */
323323 ( ( FreeRTOS_ntohl ( ulDestinationIPAddress ) & 0xffU ) != 0xffU ) &&
324- ( xIsIPv4Multicast ( ulDestinationIPAddress ) == pdFALSE ) &&
325- /* Or (during DHCP negotiation) we have no IP-address yet? */
326- ( FreeRTOS_IsNetworkUp () != pdFALSE ) )
324+ ( xIsIPv4Multicast ( ulDestinationIPAddress ) == pdFALSE ) )
327325 {
328326 /* Packet is not for this node, release it */
329327 eReturn = eReleaseBuffer ;
Original file line number Diff line number Diff line change @@ -388,7 +388,6 @@ struct xIPv6_Couple
388388 #endif
389389 {
390390 if ( ( ulIPAddress == 0U ) ||
391- ( pxEndPoint -> ipv4_settings .ulIPAddress == 0U ) ||
392391 ( pxEndPoint -> ipv4_settings .ulIPAddress == ulIPAddress ) )
393392 {
394393 break ;
You can’t perform that action at this time.
0 commit comments