MCPcopy Create free account
hub / github.com/apache/nifi-minifi-cpp / HTTPClient

Method HTTPClient

extensions/http-curl/client/HTTPClient.cpp:39–44  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

37namespace utils {
38
39HTTPClient::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
46HTTPClient::HTTPClient(std::string name, utils::Identifier uuid)
47 : core::Connectable(name, uuid) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected