| 235 | bool HttpAsyncClient::canReuseConnectionFor(StringSpan protocol, StringSpan host, uint16_t port) const |
| 236 | { |
| 237 | return hasOpenConnection and currentPort == port and currentProtocol == protocol and currentHost == host; |
| 238 | } |
| 239 | |
| 240 | Result HttpAsyncClient::ensureConnected() |
| 241 | { |
| 242 | if (not hasOpenConnection) |
| 243 | { |
nothing calls this directly
no outgoing calls
no test coverage detected