| 7884 | inline int ClientImpl::port() const { return port_; } |
| 7885 | |
| 7886 | inline size_t ClientImpl::is_socket_open() const { |
| 7887 | std::lock_guard<std::mutex> guard(socket_mutex_); |
| 7888 | return socket_.is_open(); |
| 7889 | } |
| 7890 | |
| 7891 | inline socket_t ClientImpl::socket() const { return socket_.sock; } |
| 7892 |