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 Jan 02 17:48:38 2019 +0000
Revision:
97:d91f7db00235
Parent:
83:08c983006a6e
Child:
98:b977424ec7f7
Added fault points

Who changed what in which revision?

UserRevisionLine numberNew contents of line
andrewboyson 61:aad055f1b0d1 1 #include <stdint.h>
andrewboyson 61:aad055f1b0d1 2 #include <stdbool.h>
andrewboyson 2:849103b5a16d 3
andrewboyson 43:bc028d5a6424 4 extern bool NetTraceStack;
andrewboyson 43:bc028d5a6424 5 extern bool NetTraceNewLine;
andrewboyson 43:bc028d5a6424 6 extern bool NetTraceVerbose;
andrewboyson 57:e0fb648acf48 7 extern char NetTraceHost[];
andrewboyson 61:aad055f1b0d1 8 extern bool NetTraceHostGetMatched(void);
andrewboyson 61:aad055f1b0d1 9 extern void NetTraceHostResetMatched(void);
andrewboyson 57:e0fb648acf48 10 extern void NetTraceHostCheckIp6(char* ip);
andrewboyson 57:e0fb648acf48 11 extern void NetTraceHostCheckMac(char* mac);
andrewboyson 37:793b39683406 12
andrewboyson 0:faa09bd4e6bf 13 extern int16_t NetToHost16(int16_t n);
andrewboyson 0:faa09bd4e6bf 14 extern int32_t NetToHost32(int32_t n);
andrewboyson 0:faa09bd4e6bf 15 extern int64_t NetToHost64(int64_t n);
andrewboyson 0:faa09bd4e6bf 16 extern uint16_t NetCheckSum(int count, void* pData);
andrewboyson 2:849103b5a16d 17 extern uint16_t NetCheckSumTwo(int count1, void* pData1, int count2, void* pData2);
andrewboyson 2:849103b5a16d 18
andrewboyson 61:aad055f1b0d1 19 extern void NetInit(const char* name4, const char* name6);
andrewboyson 61:aad055f1b0d1 20 extern void NetMain(void);
andrewboyson 7:b794780e33b4 21
andrewboyson 59:e0e556c8bd46 22 extern const char* NetName4;
andrewboyson 59:e0e556c8bd46 23 extern const char* NetName6;
andrewboyson 97:d91f7db00235 24
andrewboyson 97:d91f7db00235 25 #define FAULT_POINT_NetMain 1
andrewboyson 97:d91f7db00235 26 #define FAULT_POINT_LinkMain 2
andrewboyson 97:d91f7db00235 27 #define FAULT_POINT_EthHandlePacket 3
andrewboyson 97:d91f7db00235 28 #define FAULT_POINT_Ip4HandleReceivedPacket 4
andrewboyson 97:d91f7db00235 29 #define FAULT_POINT_Tcp4HandleReceivedPacket 5
andrewboyson 97:d91f7db00235 30 #define FAULT_POINT_TcpHandleReceivedPacket 6