Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 58d4dad

Browse files
author
Soren Ptak
committedJul 21, 2023
Restore files that had the formattign errors added
1 parent 1e8545a commit 58d4dad

File tree

2 files changed

+6
-10
lines changed

2 files changed

+6
-10
lines changed
 

‎source/FreeRTOS_ARP.c

+1-3
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,6 @@
4141
#include "semphr.h"
4242

4343
/* FreeRTOS+TCP includes. */
44-
45-
4644
#include "FreeRTOS_IP.h"
4745
#include "FreeRTOS_IP_Timers.h"
4846
#include "FreeRTOS_Sockets.h"
@@ -243,7 +241,7 @@ eFrameProcessingResult_t eARPProcessPacket( const NetworkBufferDescriptor_t * px
243241
/* Process received ARP frame to see if there is a clash. */
244242
#if ( ipconfigARP_USE_CLASH_DETECTION != 0 )
245243
{
246-
NetworkEndPoint_t * pxSourceEndPoint = FreeRTOS_FindEndPointOnIP_IPv4( ulSenderProtocolAddress, 2 );
244+
NetworkEndPoint_t * pxSourceEndPoint = FreeRTOS_FindEndPointOnIP_IPv4( ulSenderProtocolAddress, 2 );
247245

248246
if( ( pxSourceEndPoint != NULL ) && ( pxSourceEndPoint->ipv4_settings.ulIPAddress == ulSenderProtocolAddress ) )
249247
{

‎source/include/FreeRTOS_DNS.h

+5-7
Original file line numberDiff line numberDiff line change
@@ -79,22 +79,20 @@ typedef enum xIPPreference
7979
{
8080
xPreferenceNone,
8181
xPreferenceIPv4,
82-
#if ( ipconfigUSE_IPv6 != 0 )
82+
#if ( ipconfigUSE_IPv6 != 0 )
8383
xPreferenceIPv6,
8484
#endif
8585
} IPPreference_t;
8686

87-
/** @brief This variable determines he choice of DNS server, either IPv4 or IPv6. */
88-
extern IPPreference_t xDNS_IP_Preference;
87+
/** @brief This variable determines he choice of DNS server, either IPv4 or IPv6. */
88+
extern IPPreference_t xDNS_IP_Preference;
8989

9090
#if ( ipconfigUSE_NBNS != 0 )
9191

9292
/*
9393
* Inspect a NetBIOS Names-Service message. If the name matches with ours
9494
* (xApplicationDNSQueryHook returns true) an answer will be sent back.
95-
* Note that LLMNR is a better protocol
96-
97-
for name services on a LAN as it is
95+
* Note that LLMNR is a better protocol for name services on a LAN as it is
9896
* less polluted
9997
*/
10098
uint32_t ulNBNSHandlePacket( NetworkBufferDescriptor_t * pxNetworkBuffer );
@@ -119,7 +117,7 @@ for name services on a LAN as it is
119117
const struct freertos_addrinfo * pxHints, /* If not NULL: preferences. */
120118
struct freertos_addrinfo ** ppxResult, /* An allocated struct, containing the results. */
121119
FOnDNSEvent pCallback,
122-
void * pvSearchID,
120+
void * pvSearchID,
123121
TickType_t uxTimeout );
124122

125123
#endif /* if ( ipconfigDNS_USE_CALLBACKS != 0 ) */

0 commit comments

Comments
 (0)
Please sign in to comment.