| 31 | { |
| 32 | public: |
| 33 | HTTPSTraceClient(const std::shared_ptr<Service>& service, std::shared_ptr<SSLContext> context, const std::string& address, int port, int messages) |
| 34 | : HTTPSClient(service, context, address, port), |
| 35 | _messages(messages) |
| 36 | { |
| 37 | } |
| 38 | |
| 39 | void SendMessage() { SendRequestAsync(request().MakeTraceRequest("/")); } |
| 40 |
nothing calls this directly
no outgoing calls
no test coverage detected