| 144 | } |
| 145 | |
| 146 | TCPSocket::TCPSocket(RW_handler rw_handler, D_handler d_handler) |
| 147 | : rw_handler(std::move(rw_handler)), d_handler(std::move(d_handler)) {} |
| 148 | |
| 149 | void TCPSocket::close() { |
| 150 | if (impl) { |
nothing calls this directly
no outgoing calls
no test coverage detected