| 59 | public: |
| 60 | stream_client_socket(); |
| 61 | stream_client_socket(const stream_client_socket&) = delete; |
| 62 | stream_client_socket(stream_client_socket&& other) |
| 63 | : socket(std::move(other)), shut_rd(false), shut_wr(false) {} |
| 64 |
nothing calls this directly
no outgoing calls
no test coverage detected