virtual int read();
virtual int read();
Reads the data sent from the server side and returns one single byte if there is no parameter given. If the buffer and buffer size are given, store the data in the buffer passed in.
The data byte value. -1 is returned if there is no data available.
int v = client.read(); if (v != -1) { Serial.print((char)v); }
LTcpClient.h