mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-10-17 10:17:45 -04:00
Sync with +TCP amazon-FreeRTOS (#158)
* DNS.c commit * IP.c commit * Add various source & header files
This commit is contained in:
parent
8e36bee30e
commit
e0d62163b0
8 changed files with 826 additions and 687 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue