Skip to content

Commit 2aba342

Browse files
author
Alexander Senier
committed
Enable LLMNR
1 parent 1f8e4ee commit 2aba342

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

examples/include/FreeRTOS-10.0.1/FreeRTOSIPConfig.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
#define ipconfigRAND32() 1
99

1010
#define ipconfigUSE_DNS 1
11+
#define ipconfigUSE_LLMNR 1
1112
#define ipconfigUSE_TCP 0
1213
#define ipconfigREPLY_TO_INCOMING_PINGS 1
1314
#define ipconfigDRIVER_INCLUDED_RX_IP_CHECKSUM 1

examples/src/freertos_10_0_1_helper.c

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -113,3 +113,8 @@ BaseType_t FreeRTOS_closesocket( Socket_t xSocket )
113113
{
114114
errx(1, "%s called", __func__);
115115
}
116+
117+
BaseType_t xApplicationDNSQueryHook( const char *pcName )
118+
{
119+
return pdTRUE;
120+
}

0 commit comments

Comments
 (0)