#include <EtherCard.h>
...
byte Ethernet::buffer[700];
void loop()
....
const char* reply = ether.tcpReply(session);
if (reply != 0) {
Serial.println(reply);
}
.....
}
I use the above routine. Only 512 bytes are received. I need a maximum of 560 bytes. What should I do?