Home
last modified time | relevance | path

Searched refs:ipconfigNETWORK_MTU (Results 1 – 25 of 39) sorted by relevance

12

/FreeRTOS-Plus-TCP-v3.1.0/source/include/
DFreeRTOSIPConfigDefaults.h615 #ifndef ipconfigNETWORK_MTU
616 #define ipconfigNETWORK_MTU 1500 macro
619 #if ipconfigNETWORK_MTU > ( SIZE_MAX >> 1 )
623 #undef ipconfigNETWORK_MTU
624 #define ipconfigNETWORK_MTU ( SIZE_MAX >> 1 ) macro
628 #if ( ipconfigNETWORK_MTU < 46 )
629 #error ipconfigNETWORK_MTU must be at least 46.
643 …#define ipconfigTCP_MSS ( ipconfigNETWORK_MTU - ( ipSIZE_OF_IPv4_HEADER + ipSIZE_OF_TCP_HEADER …
DFreeRTOS_DHCP.h44 #if ( ipconfigUSE_DHCP != 0 ) && ( ipconfigNETWORK_MTU < 586U )
48 #error ipconfigNETWORK_MTU needs to be at least 586 to use DHCP
/FreeRTOS-Plus-TCP-v3.1.0/test/unit-test/FreeRTOS_TCP_Utils/
DFreeRTOS_TCP_Utils_utest.c57 uint8_t ucEthernetBuffer[ ipconfigNETWORK_MTU ] =
107 TEST_ASSERT_EQUAL( ipconfigNETWORK_MTU - 40U, pxSocket->u.xTCP.usMSS ); in test_prvSocketSetMSS_Normal()
/FreeRTOS-Plus-TCP-v3.1.0/tools/tcp_utilities/
Dtcp_mem_stats.c74 …#define ETH_MAX_PACKET_SIZE ( ( ipconfigNETWORK_MTU + ipSIZE_OF_ETH_HEADER + ipBUFFER_PADDING +…
219 STATS_PRINTF( ( "TCPMemStat,NETWORK_MTU,%u\n", ipconfigNETWORK_MTU ) ); in vWriteHeader()
250 … uxPacketSize = ( ipconfigNETWORK_MTU + ipSIZE_OF_ETH_HEADER + ipBUFFER_PADDING + 31 ) & ~0x1FuL; in vWriteHeader()
338 … uxPacketSize = ( ipconfigNETWORK_MTU + ipSIZE_OF_ETH_HEADER + ipBUFFER_PADDING + 3 ) & ~0x03uL; in vWriteHeader()
Dtcp_dump_packets.c209 … uxLength = dumpITEM_COUNT * ( sizeof( void * ) + ipconfigNETWORK_MTU + ipSIZE_OF_ETH_HEADER ); in dump_packet_init()
295 uint8_t pcBuffer[ ipconfigNETWORK_MTU ]; in prvWritePackets()
/FreeRTOS-Plus-TCP-v3.1.0/source/portable/NetworkInterface/libslirp/
DMBuffNetworkInterface.c52 #if ipconfigNETWORK_MTU < 1500U
53 #error ipconfigNETWORK_MTU must be at least 1500
56 #define NETWORK_BUFFER_LEN ( ipconfigNETWORK_MTU + ipSIZE_OF_ETH_HEADER )
/FreeRTOS-Plus-TCP-v3.1.0/source/portable/NetworkInterface/WinPCap/
DNetworkInterface.c208 if( ( pxNetworkBuffer->xDataLength <= ( ipconfigNETWORK_MTU + ipSIZE_OF_ETH_HEADER ) ) && in xNetworkInterfaceOutput()
454 if( ( pkt_header->caplen <= ( ipconfigNETWORK_MTU + ipSIZE_OF_ETH_HEADER ) ) && in pcap_callback()
485 uint8_t ucBuffer[ ipconfigNETWORK_MTU + ipSIZE_OF_ETH_HEADER ]; in prvWinPcapSendThread()
548 uint8_t ucRecvBuffer[ ipconfigNETWORK_MTU + ipSIZE_OF_ETH_HEADER ]; in prvInterruptSimulatorTask()
/FreeRTOS-Plus-TCP-v3.1.0/source/portable/NetworkInterface/STM32Fxx/
Dreadme.md90 #define ETH_RX_BUF_SIZE ( ipconfigNETWORK_MTU + 36 )
91 #define ETH_TX_BUF_SIZE ( ipconfigNETWORK_MTU + 36 )
98 …ue of `ETH_RX_BUF_SIZE` and `ETH_TX_BUF_SIZE` depends on the actual value of `ipconfigNETWORK_MTU`.
105 … the size be at least a multiple of 8 ( for DMA ), and make it at least "ipconfigNETWORK_MTU + 14".
/FreeRTOS-Plus-TCP-v3.1.0/test/build-combination/AllDisable/
DFreeRTOSIPConfig.h232 #define ipconfigNETWORK_MTU 1500U macro
/FreeRTOS-Plus-TCP-v3.1.0/test/build-combination/AllEnable/
DFreeRTOSIPConfig.h232 #define ipconfigNETWORK_MTU 1500U macro
/FreeRTOS-Plus-TCP-v3.1.0/source/portable/NetworkInterface/linux/
DNetworkInterface.c159 ( ipconfigNETWORK_MTU + ipSIZE_OF_ETH_HEADER ) ) && in xNetworkInterfaceOutput()
633 if( ( pkt_header->caplen <= ( ipconfigNETWORK_MTU + ipSIZE_OF_ETH_HEADER ) ) && in pcap_callback()
689 uint8_t ucBuffer[ ipconfigNETWORK_MTU + ipSIZE_OF_ETH_HEADER ]; in prvLinuxPcapSendThread()
736 uint8_t ucRecvBuffer[ ipconfigNETWORK_MTU + ipSIZE_OF_ETH_HEADER ]; in prvInterruptSimulatorTask()
/FreeRTOS-Plus-TCP-v3.1.0/test/Coverity/ConfigFiles/
DFreeRTOSIPConfig.h236 #define ipconfigNETWORK_MTU 1500U macro
/FreeRTOS-Plus-TCP-v3.1.0/test/cbmc/patches/
DFreeRTOSIPConfig.h244 #define ipconfigNETWORK_MTU 1500U macro
/FreeRTOS-Plus-TCP-v3.1.0/test/unit-test/FreeRTOS_Sockets_DiffConfig1/
DFreeRTOSIPConfig.h234 #define ipconfigNETWORK_MTU 1500U macro
/FreeRTOS-Plus-TCP-v3.1.0/test/unit-test/FreeRTOS_Tiny_TCP/
DFreeRTOSIPConfig.h234 #define ipconfigNETWORK_MTU 1500U macro
/FreeRTOS-Plus-TCP-v3.1.0/test/unit-test/FreeRTOS_ARP_DataLenLessThanMinPacket/
DFreeRTOSIPConfig.h234 #define ipconfigNETWORK_MTU 1500U macro
/FreeRTOS-Plus-TCP-v3.1.0/test/unit-test/FreeRTOS_Sockets_DiffConfig/
DFreeRTOSIPConfig.h234 #define ipconfigNETWORK_MTU 1500U macro
/FreeRTOS-Plus-TCP-v3.1.0/test/unit-test/FreeRTOS_IP_DiffConfig/
DFreeRTOSIPConfig.h234 #define ipconfigNETWORK_MTU 1500U macro
/FreeRTOS-Plus-TCP-v3.1.0/test/unit-test/FreeRTOS_IP_Utils_DiffConfig/
DFreeRTOSIPConfig.h234 #define ipconfigNETWORK_MTU 1500U macro
/FreeRTOS-Plus-TCP-v3.1.0/test/unit-test/ConfigFiles/
DFreeRTOSIPConfig.h236 #define ipconfigNETWORK_MTU 1500U macro
/FreeRTOS-Plus-TCP-v3.1.0/test/unit-test/FreeRTOS_TCP_IP_DiffConfig/
DFreeRTOSIPConfig.h234 #define ipconfigNETWORK_MTU 1500U macro
DFreeRTOS_TCP_IP_DiffConfig_utest.c70 uint8_t ucEthernetBuffer[ ipconfigNETWORK_MTU ] =
/FreeRTOS-Plus-TCP-v3.1.0/test/cbmc/proofs/TCP/prvTCPReturnPacket/
DTCPReturnPacket_harness.c110 __CPROVER_assume( ( ulLen >= sizeof( TCPPacket_t ) ) && ( ulLen < ipconfigNETWORK_MTU ) ); in harness()
/FreeRTOS-Plus-TCP-v3.1.0/test/unit-test/FreeRTOS_TCP_Reception/
DFreeRTOS_TCP_Reception_utest.c65 uint8_t ucEthernetBuffer[ ipconfigNETWORK_MTU ] =
647 uint8_t EthernetBuffer[ ipconfigNETWORK_MTU ] =
682 uint8_t EthernetBuffer_urg[ ipconfigNETWORK_MTU ] = in test_prvCheckRxData_URG_On()
776 uint8_t EthernetBuffer_zl[ ipconfigNETWORK_MTU ] = in test_prvStoreRxData_Zero_Length()
/FreeRTOS-Plus-TCP-v3.1.0/test/unit-test/FreeRTOS_TCP_Transmission/
DFreeRTOS_TCP_Transmission_utest.c80 uint8_t ucEthernetBuffer[ ipconfigNETWORK_MTU ] =
852 TEST_ASSERT_EQUAL( ipconfigNETWORK_MTU + 22U, pReturn->xDataLength ); in test_prvTCPBufferResize_Fixed_Size_Without_Buffer()
990 uint8_t ReturnEthernetBuffer[ ipconfigNETWORK_MTU ]; in test_prvTCPPrepareSend_State_Syn_Zero_Data_Win_Change()
1013 uint8_t ReturnEthernetBuffer[ ipconfigNETWORK_MTU ]; in test_prvTCPPrepareSend_State_Syn_Zero_Data_Keep_Alive()
1037 uint8_t ReturnEthernetBuffer[ ipconfigNETWORK_MTU ]; in test_prvTCPPrepareSend_State_Established_Zero_Data_KLCount1_Age_GT_Max()
1120 uint8_t ReturnEthernetBuffer[ ipconfigNETWORK_MTU ]; in test_prvTCPPrepareSend_State_Established_Zero_Data_KLCount1_Age_GT_Max_Win_Change()
1147 uint8_t ReturnEthernetBuffer[ ipconfigNETWORK_MTU ]; in test_prvTCPPrepareSend_State_Established_Non_Zero_Data_No_Buffer()
1181 uint8_t ReturnEthernetBuffer[ ipconfigNETWORK_MTU ]; in test_prvTCPPrepareSend_State_Established_Non_Zero_Data_MSS_0_KLCount4()
1213 uint8_t ReturnEthernetBuffer[ ipconfigNETWORK_MTU ]; in test_prvTCPPrepareSend_State_Established_Non_Zero_Data_Not_Close_Not_ShutDown_KLcount1()
1248 uint8_t ReturnEthernetBuffer[ ipconfigNETWORK_MTU ]; in test_prvTCPPrepareSend_State_Established_Non_Zero_Data_Req_Close_Req_ShutDown_Tx_Done_KLcount1()
[all …]

12