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/tcpbuf.h@54:84ef2b29cf7e, 2017-11-13 (annotated)
- Committer:
- andrewboyson
- Date:
- Mon Nov 13 08:06:55 2017 +0000
- Revision:
- 54:84ef2b29cf7e
- Child:
- 61:aad055f1b0d1
Tidied HTTP files
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
andrewboyson | 54:84ef2b29cf7e | 1 | #include "mbed.h" |
andrewboyson | 54:84ef2b29cf7e | 2 | |
andrewboyson | 54:84ef2b29cf7e | 3 | extern void TcpBufAddChar (char c); |
andrewboyson | 54:84ef2b29cf7e | 4 | extern void TcpBufFillChar (char c, int length); |
andrewboyson | 54:84ef2b29cf7e | 5 | extern int TcpBufAddText (const char* text); |
andrewboyson | 54:84ef2b29cf7e | 6 | extern int TcpBufAddV (char *fmt, va_list argptr); |
andrewboyson | 54:84ef2b29cf7e | 7 | extern int TcpBufAddF (char *fmt, ...); |
andrewboyson | 54:84ef2b29cf7e | 8 | extern void TcpBufAddData (const char* data, int length); |
andrewboyson | 54:84ef2b29cf7e | 9 | extern void TcpBufAddStream(void (*startFunction)(void), int (*enumerateFunction)(void)); |
andrewboyson | 54:84ef2b29cf7e | 10 | |
andrewboyson | 54:84ef2b29cf7e | 11 | extern void TcpBufStart (int position, int mss, char *pData); |
andrewboyson | 54:84ef2b29cf7e | 12 | extern int TcpBufLength (); |