Home
last modified time | relevance | path

Searched refs:usMSSInit (Results 1 – 6 of 6) sorted by relevance

/FreeRTOS-Plus-TCP-v3.1.0/source/include/
DFreeRTOS_TCP_WIN.h140 uint16_t usMSSInit; /**< MSS as configured by the socket owner */ member
/FreeRTOS-Plus-TCP-v3.1.0/source/
DFreeRTOS_Tiny_TCP.c339 if( ulWindowSize >= pxWindow->usMSSInit ) in prvTCPWindowTxHasSpace()
DFreeRTOS_TCP_Reception.c301 pxTCPWindow->usMSSInit = ( uint16_t ) uxNewMSS; in prvSingleStepTCPHeaderOptions()
DFreeRTOS_TCP_WIN.c834 if( pxWindow->usMSSInit != 0U ) in vTCPWindowInit()
836 pxWindow->usMSSInit = ( uint16_t ) ulMSS; in vTCPWindowInit()
/FreeRTOS-Plus-TCP-v3.1.0/test/unit-test/FreeRTOS_TCP_WIN/
DFreeRTOS_TCP_WIN_utest.c341 xWindow.usMSSInit = 2; in test_vTCPWindowInit_MSS_not_zero()
346 TEST_ASSERT_EQUAL( ulMSS, xWindow.usMSSInit ); in test_vTCPWindowInit_MSS_not_zero()
357 xWindow.usMSSInit = 0; in test_vTCPWindowInit_MSS_not_zero_mssInit_zero()
362 TEST_ASSERT_EQUAL( 0, xWindow.usMSSInit ); in test_vTCPWindowInit_MSS_not_zero_mssInit_zero()
373 xWindow.usMSSInit = 0; in test_vTCPWindowInit_MSS_not_zero_mss_zero()
378 TEST_ASSERT_EQUAL( 0, xWindow.usMSSInit ); in test_vTCPWindowInit_MSS_not_zero_mss_zero()
/FreeRTOS-Plus-TCP-v3.1.0/test/unit-test/FreeRTOS_Tiny_TCP/
DFreeRTOS_Tiny_TCP_utest.c443 xWindow.usMSSInit = 300; in test_xTCPWindowTxHasData_tx_window_no_space()