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 Oct 26 14:50:24 2017 +0000
Revision:
47:73af5c0b0dc2
Parent:
37:793b39683406
Child:
48:952dddb74b8b
Replaced a number of temporary buffers with direct writes to the Log or HTTP.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
andrewboyson 18:accfcb80d9c3 1 extern int Ip4AddressToString(uint32_t ip, int size, char* text);
andrewboyson 47:73af5c0b0dc2 2 extern int Ip4AddressLog (uint32_t ip);
andrewboyson 47:73af5c0b0dc2 3 extern int Ip4AddressHttp (uint32_t ip);
andrewboyson 18:accfcb80d9c3 4 extern uint32_t Ip4Parse(char* text);
andrewboyson 14:e75a59c1123d 5
andrewboyson 37:793b39683406 6 extern int Ip4HandleReceivedPacket(void (*traceback)(void), char* pSrcMac, void* pPacket, int* pSize, char* pDstMac);
andrewboyson 37:793b39683406 7 extern int Ip4PollForPacketToSend ( void* pPacket, int* pSize, char* pDstMac);
andrewboyson 14:e75a59c1123d 8
andrewboyson 47:73af5c0b0dc2 9 extern void Ip4DstIpFromDest(int dest, uint32_t* pDstIp);