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

Committer:
andrewboyson
Date:
Fri Nov 03 16:19:15 2017 +0000
Revision:
50:492f2d2954e4
Parent:
eth/nr.h@43:bc028d5a6424
Split name resolution into NR4 and NR6

Who changed what in which revision?

UserRevisionLine numberNew contents of line
andrewboyson 50:492f2d2954e4 1 extern bool Nr4Trace;
andrewboyson 41:db727df5f98b 2
andrewboyson 50:492f2d2954e4 3 extern void Nr4MakeRequestForNameFromIp(uint32_t ip);
andrewboyson 50:492f2d2954e4 4 extern void Nr4MakeRequestForIpFromName(char* name);
andrewboyson 30:e34173b7585c 5
andrewboyson 50:492f2d2954e4 6 extern void Nr4AddIpRecord(uint32_t ip, char* name, int protocol);
andrewboyson 30:e34173b7585c 7
andrewboyson 50:492f2d2954e4 8 extern void Nr4IpToName(uint32_t ip, char* name);
andrewboyson 50:492f2d2954e4 9 extern void Nr4NameToIp(char* name, uint32_t* pIp);
andrewboyson 50:492f2d2954e4 10 extern void Nr4SendHttp();
andrewboyson 30:e34173b7585c 11
andrewboyson 50:492f2d2954e4 12 extern void Nr4Main();
andrewboyson 50:492f2d2954e4 13 extern void Nr4Init();