| 37 | namespace utils { |
| 38 | |
| 39 | HTTPClient::HTTPClient(const std::string &url, const std::shared_ptr<minifi::controllers::SSLContextService> ssl_context_service) |
| 40 | : core::Connectable("HTTPClient"), |
| 41 | ssl_context_service_(ssl_context_service), |
| 42 | url_(url) { |
| 43 | http_session_ = curl_easy_init(); |
| 44 | } |
| 45 | |
| 46 | HTTPClient::HTTPClient(std::string name, utils::Identifier uuid) |
| 47 | : core::Connectable(name, uuid) { |
nothing calls this directly
no outgoing calls
no test coverage detected