| 188 | bool tls; |
| 189 | |
| 190 | HasConnectionTask(std::string&& host, uint16_t port, bool tls) : host(std::move(host)), port(port), tls(tls) {} |
| 191 | |
| 192 | void onTick() { |
| 193 | fulfil(soup::Scheduler::get()->findReusableSocket(host, port, tls ? soup::SOCKET_TLS : soup::SOCKET_INSECURE)); |
nothing calls this directly
no outgoing calls
no test coverage detected