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:
Thu May 20 14:32:52 2021 +0000
Revision:
200:5acbc41bf469
Parent:
193:47a953ab571b
Increased number of arp entries from 20 to 30 to accommodate the number of WIZ devices plus a few incoming port 80 calls from the internet.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
andrewboyson 61:aad055f1b0d1 1 #include <stdbool.h>
andrewboyson 61:aad055f1b0d1 2
andrewboyson 48:952dddb74b8b 3 extern bool Ar6Trace;
andrewboyson 48:952dddb74b8b 4
andrewboyson 48:952dddb74b8b 5 extern void Ar6MakeRequestForMacFromIp(char* ip);
andrewboyson 48:952dddb74b8b 6
andrewboyson 74:c3756bfa960e 7 extern int Ar6AddIpRecord(void (*traceback)(void), char* pMac, char* ip);
andrewboyson 48:952dddb74b8b 8
andrewboyson 48:952dddb74b8b 9 extern void Ar6IpToMac(char* ip, char* pMac);
andrewboyson 74:c3756bfa960e 10 extern void Ar6IndexToIp(int index, char* pIp);
andrewboyson 193:47a953ab571b 11 extern bool Ar6HaveMacForIp(char* ip);
andrewboyson 193:47a953ab571b 12 extern bool Ar6CheckHaveMacAndFetchIfNot(char* ip);
andrewboyson 116:60521b29e4c9 13
andrewboyson 61:aad055f1b0d1 14 extern void Ar6SendHttp(void);
andrewboyson 140:9000ea70b220 15 extern void Ar6SendAjax(void);
andrewboyson 48:952dddb74b8b 16
andrewboyson 61:aad055f1b0d1 17 extern void Ar6Main(void);
andrewboyson 61:aad055f1b0d1 18 extern void Ar6Init(void);