MCPcopy Create free account
hub / github.com/DanielOgorchock/ST_Anything / read

Method read

Arduino/libraries/WiFi101/src/WiFiClient.cpp:220–229  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

218}
219
220int WiFiClient::read()
221{
222 uint8_t b;
223
224 if (read(&b, sizeof(b)) == -1) {
225 return -1;
226 }
227
228 return b;
229}
230
231int WiFiClient::read(uint8_t* buf, size_t size)
232{

Callers

nothing calls this directly

Calls 2

m2m_wifi_handle_eventsFunction · 0.85
recvFunction · 0.50

Tested by

no test coverage detected