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:
195:bd5b123143ca
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 60:1d8c7a1e7483 3 extern void MacClear(char* mac);
andrewboyson 143:8cec8f08dc54 4 extern void MacCopy(char* macTo, const char* macFrom);
andrewboyson 143:8cec8f08dc54 5 extern bool MacIsEmpty(const char* mac);
andrewboyson 143:8cec8f08dc54 6 extern bool MacIsSame(const char* macA, const char* macB);
andrewboyson 195:bd5b123143ca 7 extern void MacParse(const char *pText, char *mac);
andrewboyson 143:8cec8f08dc54 8 extern int MacToString(const char* mac, int size, char* text);
andrewboyson 143:8cec8f08dc54 9 extern int MacLog(const char* mac);
andrewboyson 143:8cec8f08dc54 10 extern int MacHttp(const char* mac);
andrewboyson 60:1d8c7a1e7483 11 extern char MacLocal[];
andrewboyson 143:8cec8f08dc54 12 extern int MacAccept(const char* p);
andrewboyson 60:1d8c7a1e7483 13 extern void MacMakeFromDest(int dest, int pro, char* p);