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
tcp/tcpsend.h@200:5acbc41bf469, 2021-05-20 (annotated)
- Committer:
- andrewboyson
- Date:
- Thu May 20 14:32:52 2021 +0000
- Revision:
- 200:5acbc41bf469
- Parent:
- 80:4ef1500fca1d
Increased number of arp entries from 20 to 30 to accommodate the number of WIZ devices plus a few incoming port 80 calls from the internet.
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
andrewboyson | 74:c3756bfa960e | 1 | #include "tcb.h" |
andrewboyson | 61:aad055f1b0d1 | 2 | |
andrewboyson | 75:603b10404183 | 3 | extern int TcpSend (int* pSize, void* pPacket, struct tcb* pTcb); |
andrewboyson | 75:603b10404183 | 4 | extern int TcpResendLastAck (int* pSize, void* pPacket, struct tcb* pTcb); |
andrewboyson | 75:603b10404183 | 5 | extern int TcpResendLastUnAcked (int* pSize, void* pPacket, struct tcb* pTcb); |
andrewboyson | 75:603b10404183 | 6 | extern int TcpSendReset (int* pSize, void* pPacket, struct tcb* pTcb); |
andrewboyson | 75:603b10404183 | 7 | |
andrewboyson | 80:4ef1500fca1d | 8 | extern int TcpPollForPacketToSend(int* pSize, void* pPacket, int type, int* pRemArIndex, int* pLocIpScope); |
andrewboyson | 52:fbc5a46b5e16 | 9 |