| 49 | void onDisconnected() override { disconnected = true; } |
| 50 | void onReceived(const asio::ip::udp::endpoint& endpoint, const void* buffer, size_t size) override { ReceiveAsync(); } |
| 51 | void onError(int error, const std::string& category, const std::string& message) override { errors = true; } |
| 52 | |
| 53 | public: |
| 54 | std::atomic<bool> connected{false}; |
nothing calls this directly
no outgoing calls
no test coverage detected