| 6209 | client_cert_path_(client_cert_path), client_key_path_(client_key_path) {} |
| 6210 | |
| 6211 | inline ClientImpl::~ClientImpl() { |
| 6212 | std::lock_guard<std::mutex> guard(socket_mutex_); |
| 6213 | shutdown_socket(socket_); |
| 6214 | close_socket(socket_); |
| 6215 | } |
| 6216 | |
| 6217 | inline bool ClientImpl::is_valid() const { return true; } |
| 6218 |
nothing calls this directly
no test coverage detected