| 87 | { |
| 88 | public: |
| 89 | client(boost::asio::io_context& io_context) |
| 90 | : socket_(io_context), |
| 91 | deadline_(io_context), |
| 92 | heartbeat_timer_(io_context) |
| 93 | { |
| 94 | } |
| 95 | |
| 96 | // Called by the user of the client class to initiate the connection process. |
| 97 | // The endpoints will have been obtained using a tcp::resolver. |
nothing calls this directly
no outgoing calls
no test coverage detected