Andrew Boyson / net

Dependents:   oldheating gps motorhome heating

Committer:
andrewboyson
Date:
Sat Oct 20 18:56:13 2018 +0000
Revision:
71:736a5747ade1
Parent:
61:aad055f1b0d1
Child:
73:43e3d7fb3d60
Started process of making TCP pollable

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 61:aad055f1b0d1 3
andrewboyson 52:fbc5a46b5e16 4 extern bool TcpTrace;
andrewboyson 52:fbc5a46b5e16 5
andrewboyson 71:736a5747ade1 6 extern int TcpHandleReceivedPacket(void (*traceback)(void), int sizeRx, void* pPacketRx, int* pSizeTx, void* pPacketTx, int type, void* pCachedRemIp);
andrewboyson 71:736a5747ade1 7 extern int TcpPollForPacketToSend(int* pSize, void* pPacket, int type, void* pCachedRemIp);
andrewboyson 10:f0854784e960 8
andrewboyson 56:35117a8b5c65 9 extern void TcpLogHeader(uint16_t calculatedChecksum);
andrewboyson 10:f0854784e960 10
andrewboyson 10:f0854784e960 11 extern void TcpMakeHeader(int size, void* pPacket);
andrewboyson 10:f0854784e960 12 extern void TcpAddChecksum(void*pPacket, uint16_t checksum);