Andrew Boyson / net

Dependents:   oldheating gps motorhome heating

Committer:
andrewboyson
Date:
Tue Oct 31 21:25:09 2017 +0000
Revision:
48:952dddb74b8b
Parent:
47:73af5c0b0dc2
Child:
49:1a6336f2b3f9
Split address resolution into AR4 and AR6. Corrected issue clearing a AR6 record.

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 48:952dddb74b8b 6 extern bool Ip4Trace;
andrewboyson 48:952dddb74b8b 7 extern int Ip4HandleReceivedPacket(void (*traceback)(void), char* pSrcMac, void* pPacket, int* pSize, char* pDstMac);
andrewboyson 48:952dddb74b8b 8 extern int Ip4PollForPacketToSend ( void* pPacket, int* pSize, char* pDstMac);
andrewboyson 14:e75a59c1123d 9
andrewboyson 47:73af5c0b0dc2 10 extern void Ip4DstIpFromDest(int dest, uint32_t* pDstIp);