Andrew Boyson / net

Dependents:   oldheating gps motorhome heating

Revision:
167:3ba4e3c49631
Parent:
159:3ebef2d02f7f
Child:
170:96c637dc3f52
diff -r 89e3ce39b31b -r 3ba4e3c49631 resolve/nr6.c
--- a/resolve/nr6.c	Thu Apr 02 11:58:33 2020 +0000
+++ b/resolve/nr6.c	Thu Apr 02 19:08:25 2020 +0000
@@ -316,9 +316,14 @@
         if (records[i].state == STATE_EMPTY) continue;
         if (!Ip6AddressIsEmpty(records[i].ip) || records[i].name[0])
         {
+            HttpAddByteAsHex(i);
+            HttpAddChar('\t');
             HttpAddInt32AsHex(MsTimerCount - records[i].elapsed);
+            HttpAddChar('\t');
             for (int b = 0; b < 16; b++) HttpAddByteAsHex(records[i].ip[b]);
+            HttpAddChar('\t');
             HttpAddChar(letterFromStateAndProtocol(records[i].state, records[i].protocol));
+            HttpAddChar('\t');
             HttpAddText(records[i].name);
             HttpAddChar('\n');
         }