Home
last modified time | relevance | path

Searched refs:pxSegment (Results 1 – 2 of 2) sorted by relevance

/FreeRTOS-Plus-TCP-v4.0.0/source/
DFreeRTOS_TCP_WIN.c154 static void vTCPWindowFree( TCPSegment_t * pxSegment );
485 TCPSegment_t * pxSegment, * pxReturn = NULL; in xTCPWindowRxFind() local
499 pxSegment = ( ( TCPSegment_t * ) listGET_LIST_ITEM_OWNER( pxIterator ) ); in xTCPWindowRxFind()
501 if( pxSegment->ulSequenceNumber == ulSequenceNumber ) in xTCPWindowRxFind()
503 pxReturn = pxSegment; in xTCPWindowRxFind()
530 TCPSegment_t * pxSegment; in xTCPWindowNew() local
540 pxSegment = NULL; in xTCPWindowNew()
547 pxSegment = ( ( TCPSegment_t * ) listGET_LIST_ITEM_OWNER( pxItem ) ); in xTCPWindowNew()
550 configASSERT( pxSegment != NULL ); in xTCPWindowNew()
566 vTCPTimerSet( &pxSegment->xTransmitTimer ); in xTCPWindowNew()
[all …]
DFreeRTOS_Tiny_TCP.c190 TCPSegment_t * pxSegment = &( pxWindow->xTxSegment ); in lTCPWindowTxAdd() local
200 if( pxSegment->lDataLength > 0 ) in lTCPWindowTxAdd()
206 if( ulLength > ( uint32_t ) pxSegment->lMaxLength ) in lTCPWindowTxAdd()
210 …owTxAdd: can only store %u / %d bytes\n", ( unsigned ) ulLength, ( int ) pxSegment->lMaxLength ) ); in lTCPWindowTxAdd()
213 ulLength = ( uint32_t ) pxSegment->lMaxLength; in lTCPWindowTxAdd()
225 pxSegment->ulSequenceNumber = pxWindow->ulNextTxSequenceNumber; in lTCPWindowTxAdd()
226 pxSegment->lDataLength = ( int32_t ) ulLength; in lTCPWindowTxAdd()
227 pxSegment->lStreamPos = lPosition; in lTCPWindowTxAdd()
228 pxSegment->u.ulFlags = 0U; in lTCPWindowTxAdd()
229 vTCPTimerSet( &( pxSegment->xTransmitTimer ) ); in lTCPWindowTxAdd()
[all …]