| 5781 | client_cert_path_(client_cert_path), client_key_path_(client_key_path) {} |
| 5782 | |
| 5783 | inline ClientImpl::~ClientImpl() { |
| 5784 | std::lock_guard<std::mutex> guard(socket_mutex_); |
| 5785 | shutdown_socket(socket_); |
| 5786 | close_socket(socket_); |
| 5787 | } |
| 5788 | |
| 5789 | inline bool ClientImpl::is_valid() const { return true; } |
| 5790 |
nothing calls this directly
no test coverage detected