| 67 | } |
| 68 | |
| 69 | void ServiceResponder::initialize(int port, int id, const String& hostname, Uuid uuid, bool localMode) { |
| 70 | m_inst = std::make_unique<ServiceResponder>(port, id, hostname, uuid, localMode); |
| 71 | m_inst->startThread(); |
| 72 | } |
| 73 | |
| 74 | void ServiceResponder::cleanup() { |
| 75 | if (nullptr != m_inst) { |
nothing calls this directly
no outgoing calls
no test coverage detected