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:
Sat Dec 26 17:07:02 2020 +0000
Revision:
176:7eb916c22084
Parent:
107:cc58b4c2090b
Child:
183:ee809769bf89
Fixed 'unused root' problem with dns.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
andrewboyson 176:7eb916c22084 1 extern int Ip4AddressToString(const uint32_t ip, int size, char* text);
andrewboyson 176:7eb916c22084 2 extern int Ip4AddressLog (const uint32_t ip);
andrewboyson 176:7eb916c22084 3 extern int Ip4AddressHttp (const uint32_t ip);
andrewboyson 176:7eb916c22084 4 extern uint32_t Ip4AddressParse (const char* text);
andrewboyson 49:1a6336f2b3f9 5
andrewboyson 176:7eb916c22084 6 extern void Ip4AddressFromDest(const int dest, uint32_t* pDstIp);
andrewboyson 49:1a6336f2b3f9 7
andrewboyson 49:1a6336f2b3f9 8 #define IP4_BROADCAST_ADDRESS 0xFFFFFFFF
andrewboyson 49:1a6336f2b3f9 9 #define IP4_MULTICAST_ALL_HOSTS 0x010000E0
andrewboyson 49:1a6336f2b3f9 10 #define IP4_MULTICAST_ALL_ROUTERS 0x020000E0
andrewboyson 49:1a6336f2b3f9 11 #define IP4_MULTICAST_DNS_ADDRESS 0xFB0000E0
andrewboyson 49:1a6336f2b3f9 12 #define IP4_MULTICAST_LLMNR_ADDRESS 0xFC0000E0
andrewboyson 107:cc58b4c2090b 13 #define IP4_MULTICAST_NTP_ADDRESS 0x010100E0
andrewboyson 49:1a6336f2b3f9 14