Lines Matching refs:ipconfigTCP_MSS

128     uint8_t ucEthBuffer[ ipconfigTCP_MSS ];  in test_prvAllowIPPacketIPv4_LessHeaderLength()
130 memset( ucEthBuffer, 0, ipconfigTCP_MSS ); in test_prvAllowIPPacketIPv4_LessHeaderLength()
153 uint8_t ucEthBuffer[ ipconfigTCP_MSS ]; in test_prvAllowIPPacketIPv4_FragmentedPacket()
156 memset( ucEthBuffer, 0, ipconfigTCP_MSS ); in test_prvAllowIPPacketIPv4_FragmentedPacket()
181 uint8_t ucEthBuffer[ ipconfigTCP_MSS ]; in test_prvAllowIPPacketIPv4_MoreFragmentedPacket()
184 memset( ucEthBuffer, 0, ipconfigTCP_MSS ); in test_prvAllowIPPacketIPv4_MoreFragmentedPacket()
209 uint8_t ucEthBuffer[ ipconfigTCP_MSS ]; in test_prvAllowIPPacketIPv4_GreaterHeaderLength()
212 memset( ucEthBuffer, 0, ipconfigTCP_MSS ); in test_prvAllowIPPacketIPv4_GreaterHeaderLength()
237 uint8_t ucEthBuffer[ ipconfigTCP_MSS ]; in test_prvAllowIPPacketIPv4_NotMatchingIP()
241 memset( ucEthBuffer, 0, ipconfigTCP_MSS ); in test_prvAllowIPPacketIPv4_NotMatchingIP()
274 uint8_t ucEthBuffer[ ipconfigTCP_MSS ]; in test_prvAllowIPPacketIPv4_SourceIPBrdCast_DestIPMatch()
278 memset( ucEthBuffer, 0, ipconfigTCP_MSS ); in test_prvAllowIPPacketIPv4_SourceIPBrdCast_DestIPMatch()
313 uint8_t ucEthBuffer[ ipconfigTCP_MSS ]; in test_prvAllowIPPacketIPv4_SourceIPBrdCast_DestIPBrdCast()
317 memset( ucEthBuffer, 0, ipconfigTCP_MSS ); in test_prvAllowIPPacketIPv4_SourceIPBrdCast_DestIPBrdCast()
352 uint8_t ucEthBuffer[ ipconfigTCP_MSS ]; in test_prvAllowIPPacketIPv4_SourceIPBrdCast_DestIPLLMNR()
356 memset( ucEthBuffer, 0, ipconfigTCP_MSS ); in test_prvAllowIPPacketIPv4_SourceIPBrdCast_DestIPLLMNR()
391 uint8_t ucEthBuffer[ ipconfigTCP_MSS ]; in test_prvAllowIPPacketIPv4_SourceIPBrdCast_NoLocalIP()
394 memset( ucEthBuffer, 0, ipconfigTCP_MSS ); in test_prvAllowIPPacketIPv4_SourceIPBrdCast_NoLocalIP()
427 uint8_t ucEthBuffer[ ipconfigTCP_MSS ]; in test_prvAllowIPPacketIPv4_DestMACBrdCast_DestIPUnicast()
430 memset( ucEthBuffer, 0, ipconfigTCP_MSS ); in test_prvAllowIPPacketIPv4_DestMACBrdCast_DestIPUnicast()
463 uint8_t ucEthBuffer[ ipconfigTCP_MSS ]; in test_prvAllowIPPacketIPv4_SrcMACBrdCast()
466 memset( ucEthBuffer, 0, ipconfigTCP_MSS ); in test_prvAllowIPPacketIPv4_SrcMACBrdCast()
499 uint8_t ucEthBuffer[ ipconfigTCP_MSS ]; in test_prvAllowIPPacketIPv4_SrcMACBrdCastDestMACBrdCast()
502 memset( ucEthBuffer, 0, ipconfigTCP_MSS ); in test_prvAllowIPPacketIPv4_SrcMACBrdCastDestMACBrdCast()
535 uint8_t ucEthBuffer[ ipconfigTCP_MSS ]; in test_prvAllowIPPacketIPv4_SrcIPAddrIsMulticast()
539 memset( ucEthBuffer, 0, ipconfigTCP_MSS ); in test_prvAllowIPPacketIPv4_SrcIPAddrIsMulticast()
577 uint8_t ucEthBuffer[ ipconfigTCP_MSS ]; in test_prvAllowIPPacketIPv4_IncorrectChecksum()
581 memset( ucEthBuffer, 0, ipconfigTCP_MSS ); in test_prvAllowIPPacketIPv4_IncorrectChecksum()
622 uint8_t ucEthBuffer[ ipconfigTCP_MSS ]; in test_prvAllowIPPacketIPv4_IncorrectProtocolChecksum()
626 memset( ucEthBuffer, 0, ipconfigTCP_MSS ); in test_prvAllowIPPacketIPv4_IncorrectProtocolChecksum()
668 uint8_t ucEthBuffer[ ipconfigTCP_MSS ]; in test_prvAllowIPPacketIPv4_HappyPath()
672 memset( ucEthBuffer, 0, ipconfigTCP_MSS ); in test_prvAllowIPPacketIPv4_HappyPath()
715 uint8_t ucEthBuffer[ ipconfigTCP_MSS ]; in test_prvAllowIPPacketIPv4_LoopbackHappyPath()
720 memset( ucEthBuffer, 0, ipconfigTCP_MSS ); in test_prvAllowIPPacketIPv4_LoopbackHappyPath()
755 uint8_t ucEthBuffer[ ipconfigTCP_MSS ]; in test_prvAllowIPPacketIPv4_DestMacBroadcastIPNotBroadcast()
759 memset( ucEthBuffer, 0, ipconfigTCP_MSS ); in test_prvAllowIPPacketIPv4_DestMacBroadcastIPNotBroadcast()
795 uint8_t ucEthBuffer[ ipconfigTCP_MSS ]; in test_prvCheckIP4HeaderOptions_HeaderLengthSmaller()
798 memset( ucEthBuffer, 0, ipconfigTCP_MSS ); in test_prvCheckIP4HeaderOptions_HeaderLengthSmaller()
802 pxNetworkBuffer->xDataLength = ipconfigTCP_MSS; in test_prvCheckIP4HeaderOptions_HeaderLengthSmaller()
808 pxIPHeader->usLength = FreeRTOS_htons( ipconfigTCP_MSS - sizeof( IPPacket_t ) ); in test_prvCheckIP4HeaderOptions_HeaderLengthSmaller()
813 …TEST_ASSERT_EQUAL( ipconfigTCP_MSS - sizeof( IPPacket_t ) - 40, FreeRTOS_ntohs( pxIPHeader->usLeng… in test_prvCheckIP4HeaderOptions_HeaderLengthSmaller()