File tree 2 files changed +6
-10
lines changed
2 files changed +6
-10
lines changed Original file line number Diff line number Diff line change 41
41
#include "semphr.h"
42
42
43
43
/* FreeRTOS+TCP includes. */
44
-
45
-
46
44
#include "FreeRTOS_IP.h"
47
45
#include "FreeRTOS_IP_Timers.h"
48
46
#include "FreeRTOS_Sockets.h"
@@ -243,7 +241,7 @@ eFrameProcessingResult_t eARPProcessPacket( const NetworkBufferDescriptor_t * px
243
241
/* Process received ARP frame to see if there is a clash. */
244
242
#if ( ipconfigARP_USE_CLASH_DETECTION != 0 )
245
243
{
246
- NetworkEndPoint_t * pxSourceEndPoint = FreeRTOS_FindEndPointOnIP_IPv4 ( ulSenderProtocolAddress , 2 );
244
+ NetworkEndPoint_t * pxSourceEndPoint = FreeRTOS_FindEndPointOnIP_IPv4 ( ulSenderProtocolAddress , 2 );
247
245
248
246
if ( ( pxSourceEndPoint != NULL ) && ( pxSourceEndPoint -> ipv4_settings .ulIPAddress == ulSenderProtocolAddress ) )
249
247
{
Original file line number Diff line number Diff line change @@ -79,22 +79,20 @@ typedef enum xIPPreference
79
79
{
80
80
xPreferenceNone ,
81
81
xPreferenceIPv4 ,
82
- #if ( ipconfigUSE_IPv6 != 0 )
82
+ #if ( ipconfigUSE_IPv6 != 0 )
83
83
xPreferenceIPv6 ,
84
84
#endif
85
85
} IPPreference_t ;
86
86
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 ;
89
89
90
90
#if ( ipconfigUSE_NBNS != 0 )
91
91
92
92
/*
93
93
* Inspect a NetBIOS Names-Service message. If the name matches with ours
94
94
* (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
98
96
* less polluted
99
97
*/
100
98
uint32_t ulNBNSHandlePacket ( NetworkBufferDescriptor_t * pxNetworkBuffer );
@@ -119,7 +117,7 @@ for name services on a LAN as it is
119
117
const struct freertos_addrinfo * pxHints , /* If not NULL: preferences. */
120
118
struct freertos_addrinfo * * ppxResult , /* An allocated struct, containing the results. */
121
119
FOnDNSEvent pCallback ,
122
- void * pvSearchID ,
120
+ void * pvSearchID ,
123
121
TickType_t uxTimeout );
124
122
125
123
#endif /* if ( ipconfigDNS_USE_CALLBACKS != 0 ) */
You can’t perform that action at this time.
0 commit comments