1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-06-17 22:23:10 +03:00

Add WiFiClient.write for Stream

reads directly from the stream and fragments the data to achieve
maximum data throughput over WiFi
This commit is contained in:
ficeto
2015-05-13 12:07:42 +03:00
parent c0fdd09132
commit f4969ce0e5
2 changed files with 29 additions and 0 deletions

View File

@ -55,6 +55,7 @@ public:
IPAddress remoteIP();
uint16_t remotePort();
size_t write(Stream&);
friend class WiFiServer;