Inherited from Print Note: 1st call to these indicates the user is sending the body, so if need Note: be we should finish the header first
| 362 | // Note: 1st call to these indicates the user is sending the body, so if need |
| 363 | // Note: be we should finish the header first |
| 364 | virtual size_t write(uint8_t aByte) { if (iState < eRequestSent) { finishHeaders(); }; return iClient-> write(aByte); }; |
| 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(); }; |
nothing calls this directly
no outgoing calls
no test coverage detected