Inherited from Stream
| 365 | virtual size_t write(const uint8_t *aBuffer, size_t aSize) { if (iState < eRequestSent) { finishHeaders(); }; return iClient->write(aBuffer, aSize); }; |
| 366 | // Inherited from Stream |
| 367 | virtual int available() { return iClient->available(); }; |
| 368 | /** Read the next byte from the server. |
| 369 | @return Byte read or -1 if there are no bytes available. |
| 370 | */ |
nothing calls this directly
no outgoing calls
no test coverage detected