libstore: remove FileTransferRequest::verifyTLS

it's never set to false.

Change-Id: I1e436c82f1097091a08faa1dfada75e51bd5edf9
This commit is contained in:
eldritch horrors 2024-10-27 18:27:11 +01:00
parent 220251ba51
commit d82b212d33
2 changed files with 2 additions and 8 deletions

View file

@ -312,13 +312,8 @@ struct curlFileTransfer : public FileTransfer
curl_easy_setopt(req, CURLOPT_INFILESIZE_LARGE, (curl_off_t) uploadData->length());
}
if (request.verifyTLS) {
if (settings.caFile != "")
curl_easy_setopt(req, CURLOPT_CAINFO, settings.caFile.get().c_str());
} else {
curl_easy_setopt(req, CURLOPT_SSL_VERIFYPEER, 0);
curl_easy_setopt(req, CURLOPT_SSL_VERIFYHOST, 0);
}
if (settings.caFile != "")
curl_easy_setopt(req, CURLOPT_CAINFO, settings.caFile.get().c_str());
curl_easy_setopt(req, CURLOPT_CONNECTTIMEOUT, fileTransferSettings.connectTimeout.get());

View file

@ -57,7 +57,6 @@ struct FileTransferRequest
std::string uri;
Headers headers;
std::string expectedETag;
bool verifyTLS = true;
FileTransferRequest(std::string_view uri)
: uri(uri) { }