Skip to content

Commit

Permalink
boss: Fix BOSS not honoring the proxy_server setting (cemu-project#1344)
Browse files Browse the repository at this point in the history
  • Loading branch information
AToska21 authored Sep 16, 2024
1 parent a05bdb1 commit adffd53
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/Cafe/IOSU/legacy/iosu_boss.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,10 @@ namespace iosu
this->task_settings.taskType = settings->taskType;

curl = std::shared_ptr<CURL>(curl_easy_init(), curl_easy_cleanup);
if(GetConfig().proxy_server.GetValue() != "")
{
curl_easy_setopt(curl.get(), CURLOPT_PROXY, GetConfig().proxy_server.GetValue().c_str());
}
}
};

Expand Down

0 comments on commit adffd53

Please sign in to comment.