mirror of
https://github.com/FreeRTOS/FreeRTOS.git
synced 2025-06-19 14:54:28 +08:00
Sync with +TCP amazon-FreeRTOS (#158)
* DNS.c commit * IP.c commit * Add various source & header files
This commit is contained in:

committed by
GitHub

parent
8e36bee30e
commit
e0d62163b0
@ -1910,8 +1910,8 @@ const int32_t l500ms = 500;
|
||||
|
||||
#if( ipconfigUSE_TCP_WIN == 0 )
|
||||
|
||||
static BaseType_t prvTCPWindowTxHasSpace( TCPWindow_t *pxWindow, uint32_t ulWindowSize );
|
||||
static BaseType_t prvTCPWindowTxHasSpace( TCPWindow_t *pxWindow, uint32_t ulWindowSize )
|
||||
static BaseType_t prvTCPWindowTxHasSpace( TCPWindow_t const * pxWindow, uint32_t ulWindowSize );
|
||||
static BaseType_t prvTCPWindowTxHasSpace( TCPWindow_t const * pxWindow, uint32_t ulWindowSize )
|
||||
{
|
||||
BaseType_t xReturn;
|
||||
|
||||
@ -1934,7 +1934,7 @@ const int32_t l500ms = 500;
|
||||
|
||||
BaseType_t xTCPWindowTxHasData( TCPWindow_t const *pxWindow, uint32_t ulWindowSize, TickType_t *pulDelay )
|
||||
{
|
||||
TCPSegment_t *pxSegment = &( pxWindow->xTxSegment );
|
||||
TCPSegment_t const *pxSegment = &( pxWindow->xTxSegment );
|
||||
BaseType_t xReturn;
|
||||
TickType_t ulAge, ulMaxAge;
|
||||
|
||||
|
Reference in New Issue
Block a user