diff options
Diffstat (limited to 'Source/cmCurl.h')
-rw-r--r-- | Source/cmCurl.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Source/cmCurl.h b/Source/cmCurl.h index a2fa4b1..fe7eb80 100644 --- a/Source/cmCurl.h +++ b/Source/cmCurl.h @@ -3,11 +3,13 @@ #ifndef cmCurl_h #define cmCurl_h -#include "cmConfigure.h" +#include "cmConfigure.h" // IWYU pragma: keep #include "cm_curl.h" #include <string> -std::string cmCurlSetCAInfo(::CURL* curl, const char* cafile = CM_NULLPTR); +std::string cmCurlSetCAInfo(::CURL* curl, const char* cafile = nullptr); +std::string cmCurlSetNETRCOption(::CURL* curl, const std::string& netrc_level, + const std::string& netrc_file); #endif |