summaryrefslogtreecommitdiff
path: root/plugins/lastfm
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/lastfm')
-rw-r--r--plugins/lastfm/lastfm.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/plugins/lastfm/lastfm.c b/plugins/lastfm/lastfm.c
index d427b82a..06e462f8 100644
--- a/plugins/lastfm/lastfm.c
+++ b/plugins/lastfm/lastfm.c
@@ -156,6 +156,13 @@ curl_req_send (const char *req, const char *post) {
}
#endif
curl_easy_setopt (curl, CURLOPT_PROXYTYPE, curlproxytype);
+
+ const char *proxyuser = deadbeef->conf_get_str ("network.proxy.username", "");
+ const char *proxypass = deadbeef->conf_get_str ("network.proxy.password", "");
+ if (*proxyuser || *proxypass) {
+ curl_easy_setopt (curl, CURLOPT_PROXYUSERNAME, proxyuser);
+ curl_easy_setopt (curl, CURLOPT_PROXYUSERNAME, proxypass);
+ }
}
int status = curl_easy_perform(curl);
curl_easy_cleanup (curl);