A stack which works with or without an Mbed os library. Provides IPv4 or IPv6 with a full 1500 byte buffer.

Dependents:   oldheating gps motorhome heating

Revision:
186:24198369b198
Parent:
183:ee809769bf89
Child:
187:122fc1996c86
--- a/resolve/nr.c	Thu Jan 14 14:18:59 2021 +0000
+++ b/resolve/nr.c	Sat Jan 16 18:34:32 2021 +0000
@@ -319,6 +319,8 @@
         if (NrTrace) LogTimeF("NR -- ignoring invalid entry\r\n");
         return;
     }
+    //Ignore records with the name 'UNKNOWN'
+    if (strcmp(name, "UNKNOWN") == 0) return;
     
     i = getExistingEntry(addrType, address, name);
     if (i >= 0)