| 534 | std::atomic<SteadySeconds> m_idle_since; |
| 535 | |
| 536 | explicit HTTPRemoteClient(HTTPServer::Id id, const CService& addr, std::unique_ptr<Sock> socket) |
| 537 | : m_id(id), m_addr(addr), m_origin(addr.ToStringAddrPort()), m_sock{std::move(socket)}, m_idle_since{Now<SteadySeconds>()} {} |
| 538 | |
| 539 | // Disable copies (should only be used as shared pointers) |
| 540 | HTTPRemoteClient(const HTTPRemoteClient&) = delete; |
nothing calls this directly
no test coverage detected