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:
Mon Sep 25 07:09:32 2017 +0000
Revision:
36:900e24b27bfb
Parent:
35:93c39d260a83
Child:
37:793b39683406
Corrected DNS NameCompare to correctly compare a shortcut name

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 35:93c39d260a83 7 extern void Ip6LogHeaderSrc();
andrewboyson 35:93c39d260a83 8 extern void Ip6LogHeaderDst();
andrewboyson 14:e75a59c1123d 9
andrewboyson 10:f0854784e960 10 extern int Ip6HandleReceivedPacket(char* pSrcMac, void* pPacket, int *pSize, char* pDstMac);
andrewboyson 10:f0854784e960 11 extern int Ip6PollForPacketToSend ( void* pPacket, int *pSize, char* pDstMac);
andrewboyson 10:f0854784e960 12
andrewboyson 11:c051adb70c5a 13
andrewboyson 11:c051adb70c5a 14 extern void Ip6DestIpFromAction(int action, char* pDstIp);