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:
61:aad055f1b0d1
Parent:
60:1d8c7a1e7483
--- a/eth/nr4.h	Sat Dec 16 14:39:50 2017 +0000
+++ b/eth/nr4.h	Thu Jan 11 17:38:21 2018 +0000
@@ -1,3 +1,5 @@
+#include <stdbool.h>
+
 extern bool Nr4Trace;
 
 extern void Nr4MakeRequestForNameFromIp(uint32_t ip);
@@ -7,7 +9,7 @@
 
 extern void Nr4IpToName(uint32_t ip, char*     name);
 extern void Nr4NameToIp(char*  name, uint32_t*  pIp);
-extern void Nr4SendHttp();
+extern void Nr4SendHttp(void);
 
-extern void Nr4Main();
-extern void Nr4Init();
+extern void Nr4Main(void);
+extern void Nr4Init(void);