| 37 | struct close_after |
| 38 | { |
| 39 | close_after(std::chrono::steady_clock::duration t, tcp_socket& s) |
| 40 | : timeout_(t), socket_(s) |
| 41 | { |
| 42 | } |
| 43 | |
| 44 | // The maximum time to wait for an asynchronous operation to complete. |
| 45 | std::chrono::steady_clock::duration timeout_; |
nothing calls this directly
no outgoing calls
no test coverage detected