X-Git-Url: http://www.project-moonshot.org/gitweb/?p=shibboleth%2Fxmltooling.git;a=blobdiff_plain;f=xmltooling%2Futil%2FCurlURLInputStream.cpp;fp=xmltooling%2Futil%2FCurlURLInputStream.cpp;h=03d86f2f74f7c7fae8399100cf931cf7aef99c27;hp=fc0b3595393c52eba4f4e9131182c99e26b0aabe;hb=bee3c27c90c54165720cf7aa651724f4e64bd2c1;hpb=f675a8b6d3b1b9e0ac0367d73547675199b1252c diff --git a/xmltooling/util/CurlURLInputStream.cpp b/xmltooling/util/CurlURLInputStream.cpp index fc0b359..03d86f2 100644 --- a/xmltooling/util/CurlURLInputStream.cpp +++ b/xmltooling/util/CurlURLInputStream.cpp @@ -78,7 +78,7 @@ CurlURLInputStream::CurlURLInputStream(const XMLURL& urlSource, const XMLNetHTTP curl_easy_setopt(fEasy, CURLOPT_WRITEFUNCTION, staticWriteCallback); // Our static write function curl_easy_setopt(fEasy, CURLOPT_CONNECTTIMEOUT, 30); curl_easy_setopt(fEasy, CURLOPT_TIMEOUT, 60); - curl_easy_setopt(fEasy, CURLOPT_SSLVERSION, CURL_SSLVERSION_SSLv3); + curl_easy_setopt(fEasy, CURLOPT_SSLVERSION, CURL_SSLVERSION_TLSv1); curl_easy_setopt(fEasy, CURLOPT_SSL_VERIFYHOST, 0); curl_easy_setopt(fEasy, CURLOPT_SSL_VERIFYPEER, 0); curl_easy_setopt(fEasy, CURLOPT_NOPROGRESS, 1);