| 218 | } |
| 219 | |
| 220 | int 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 | |
| 231 | int WiFiClient::read(uint8_t* buf, size_t size) |
| 232 | { |
nothing calls this directly
no test coverage detected