| 32 | { |
| 33 | public: |
| 34 | EchoClient(const std::shared_ptr<Service>& service, std::shared_ptr<SSLContext> context, const std::string& address, int port, int messages) |
| 35 | : SSLClient(service, context, address, port), |
| 36 | _messages(messages) |
| 37 | { |
| 38 | } |
| 39 | |
| 40 | void SendMessage() { SendAsync(message_to_send.data(), message_to_send.size()); } |
| 41 |
nothing calls this directly
no outgoing calls
no test coverage detected