| 67 | void onReceived(const asio::ip::udp::endpoint& endpoint, const void* buffer, size_t size) override { SendAsync(endpoint, buffer, size); } |
| 68 | void onSent(const asio::ip::udp::endpoint& endpoint, size_t sent) override { ReceiveAsync(); } |
| 69 | void onError(int error, const std::string& category, const std::string& message) override { errors = true; } |
| 70 | |
| 71 | public: |
| 72 | std::atomic<bool> started{false}; |
nothing calls this directly
no outgoing calls
no test coverage detected