Andrew Boyson / net

Dependents:   oldheating gps motorhome heating

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?

UserRevisionLine numberNew 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 ();