| 52 | } |
| 53 | |
| 54 | void onReceived(const void* buffer, size_t size) override |
| 55 | { |
| 56 | _received += size; |
| 57 | timestamp_stop = Timestamp::nano(); |
| 58 | total_bytes += size; |
| 59 | HTTPSClient::onReceived(buffer, size); |
| 60 | } |
| 61 | |
| 62 | void onReceivedResponse(const HTTPResponse& response) override |
| 63 | { |
nothing calls this directly
no outgoing calls
no test coverage detected