| 71 | void onReceived(const void* buffer, size_t size) override { receive(buffer, size); } |
| 72 | size_t onSend(const void* data, size_t size) override { return SendAsync(data, size) ? size : 0; } |
| 73 | void onError(int error, const std::string& category, const std::string& message) override { errors = true; } |
| 74 | |
| 75 | protected: |
| 76 | // Protocol handlers |
nothing calls this directly
no outgoing calls
no test coverage detected