cmCurl.h 495 B

123456789101112131415
  1. /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
  2. file Copyright.txt or https://cmake.org/licensing for details. */
  3. #ifndef cmCurl_h
  4. #define cmCurl_h
  5. #include "cmConfigure.h" // IWYU pragma: keep
  6. #include "cm_curl.h"
  7. #include <string>
  8. std::string cmCurlSetCAInfo(::CURL* curl, const char* cafile = nullptr);
  9. std::string cmCurlSetNETRCOption(::CURL* curl, const std::string& netrc_level,
  10. const std::string& netrc_file);
  11. #endif