Skip to content

Commit e816a34

Browse files
author
Holden
committed
Address review comments
1 parent 2aba59f commit e816a34

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

source/FreeRTOS_Sockets.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1199,7 +1199,7 @@ static int32_t prvRecvFrom_CopyPacket( uint8_t * pucEthernetBuffer,
11991199
* (24-bytes) for compatibility.
12001200
*
12011201
* @return The number of bytes received. Or else, an error code is returned. When it
1202-
* returns a negative value, the cause can be looked-up in 'projdefs.h'.
1202+
* returns a negative value, the cause can be looked-up in 'FreeRTOS-Kernel/projdefs.h'.
12031203
*/
12041204
int32_t FreeRTOS_recvfrom( const ConstSocket_t xSocket,
12051205
void * pvBuffer,
@@ -1479,7 +1479,7 @@ static int32_t prvSendTo_ActualSend( const FreeRTOS_Socket_t * pxSocket,
14791479
* Berkeley sockets standard. Else, it is not used.
14801480
*
14811481
* @return When positive: the total number of bytes sent, when negative an error
1482-
* has occurred: it can be looked-up in 'projdefs.h'.
1482+
* has occurred: it can be looked-up in 'FreeRTOS-Kernel/projdefs.h'.
14831483
*/
14841484
int32_t FreeRTOS_sendto( Socket_t xSocket,
14851485
const void * pvBuffer,

source/include/FreeRTOS_Routing.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -318,7 +318,7 @@
318318
} RoutingStats_t;
319319

320320
extern RoutingStats_t xRoutingStatistics;
321-
#endif /* ( ipconfigHAS_ROUTING_STATISTICS != 0 ) */
321+
#endif /* if ( ( ipconfigCOMPATIBLE_WITH_SINGLE == 0 ) && ( ipconfigHAS_ROUTING_STATISTICS != 0 ) ) */
322322

323323
NetworkEndPoint_t * pxGetSocketEndpoint( ConstSocket_t xSocket );
324324
void vSetSocketEndpoint( Socket_t xSocket,

0 commit comments

Comments
 (0)