| 85 | |
| 86 | protected: |
| 87 | void onError(int error, const std::string& category, const std::string& message) override |
| 88 | { |
| 89 | std::cout << "Simple protocol server caught an error with code " << error << " and category '" << category << "': " << message << std::endl; |
| 90 | } |
| 91 | |
| 92 | // Protocol implementation |
| 93 | size_t onSend(const void* data, size_t size) override { Multicast(data, size); return size; } |
nothing calls this directly
no outgoing calls
no test coverage detected