Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/slic3r/Utils/Http.cpp')
-rw-r--r--src/slic3r/Utils/Http.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/slic3r/Utils/Http.cpp b/src/slic3r/Utils/Http.cpp
index a16aac5b5..e55c21fe1 100644
--- a/src/slic3r/Utils/Http.cpp
+++ b/src/slic3r/Utils/Http.cpp
@@ -415,6 +415,16 @@ Http& Http::remove_header(std::string name)
return *this;
}
+// Authorization by HTTP digest, based on RFC2617.
+Http& Http::auth_digest(const std::string &user, const std::string &password)
+{
+ curl_easy_setopt(p->curl, CURLOPT_USERNAME, user.c_str());
+ curl_easy_setopt(p->curl, CURLOPT_PASSWORD, password.c_str());
+ curl_easy_setopt(p->curl, CURLOPT_HTTPAUTH, CURLAUTH_DIGEST);
+
+ return *this;
+}
+
Http& Http::ca_file(const std::string &name)
{
if (p && priv::ca_file_supported(p->curl)) {