Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependents: oldheating gps motorhome heating
tcp/tcp.h@71:736a5747ade1, 2018-10-20 (annotated)
- 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?
| User | Revision | Line number | New 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); |