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:
Wed Oct 04 07:51:02 2017 +0000
Revision:
37:793b39683406
Parent:
36:900e24b27bfb
Child:
44:83ce5ace337b
Added trace back and trace forward to log messages

Who changed what in which revision?

UserRevisionLine numberNew contents of line
andrewboyson 35:93c39d260a83 1 extern int Ip6AddressToString(char* ip, int size, char* text);
andrewboyson 35:93c39d260a83 2 extern bool Ip6IsSame (char* ipA, char* ipB);
andrewboyson 35:93c39d260a83 3 extern bool Ip6IsEmpty(char* ip);
andrewboyson 36:900e24b27bfb 4 extern void Ip6Copy(char* ipTo, char* ipFrom);
andrewboyson 36:900e24b27bfb 5 extern void Ip6Clear(char* ip);
andrewboyson 14:e75a59c1123d 6
andrewboyson 37:793b39683406 7 extern int Ip6HandleReceivedPacket(void (*traceback)(void), char* pSrcMac, void* pPacket, int *pSize, char* pDstMac);
andrewboyson 37:793b39683406 8 extern int Ip6PollForPacketToSend ( void* pPacket, int *pSize, char* pDstMac);
andrewboyson 10:f0854784e960 9
andrewboyson 11:c051adb70c5a 10
andrewboyson 37:793b39683406 11 extern void Ip6DestIpFromDest(int dest, char* pDstIp);