| 27 | class TestServer : public openhd::TCPServer { |
| 28 | public: |
| 29 | explicit TestServer() |
| 30 | : openhd::TCPServer("Test", openhd::TCPServer::Config{5760}){}; |
| 31 | void on_external_device(std::string ip, int port, bool connected) override { |
| 32 | if (connected) { |
| 33 | openhd::log::get_default()->debug("Device {}:{} connected", ip, port); |
nothing calls this directly
no outgoing calls
no test coverage detected