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:
Tue Jan 12 19:10:22 2021 +0000
Revision:
183:ee809769bf89
Parent:
176:7eb916c22084
Child:
187:122fc1996c86
Added acheck as to whether DNS could be used for internal lookups and prevented external lookups being passed to LLMNR or MDNS.; Modified DHCP to try to solve the sky router sometimes sending spurious NAKs.

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 183:ee809769bf89 8 extern bool Ip4AddrIsRoutable(uint32_t ip);
andrewboyson 183:ee809769bf89 9
andrewboyson 49:1a6336f2b3f9 10 #define IP4_BROADCAST_ADDRESS 0xFFFFFFFF
andrewboyson 49:1a6336f2b3f9 11 #define IP4_MULTICAST_ALL_HOSTS 0x010000E0
andrewboyson 49:1a6336f2b3f9 12 #define IP4_MULTICAST_ALL_ROUTERS 0x020000E0
andrewboyson 49:1a6336f2b3f9 13 #define IP4_MULTICAST_DNS_ADDRESS 0xFB0000E0
andrewboyson 49:1a6336f2b3f9 14 #define IP4_MULTICAST_LLMNR_ADDRESS 0xFC0000E0
andrewboyson 107:cc58b4c2090b 15 #define IP4_MULTICAST_NTP_ADDRESS 0x010100E0
andrewboyson 49:1a6336f2b3f9 16