From: cantor Date: Wed, 2 Apr 2008 20:06:33 +0000 (+0000) Subject: Don't bother setting an SSL version, we're not trusting it anyway. X-Git-Tag: 1.4.1~338 X-Git-Url: http://www.project-moonshot.org/gitweb/?a=commitdiff_plain;ds=sidebyside;h=891841d8a388142d5a57370b21f6db8e8588c7de;p=shibboleth%2Fxmltooling.git Don't bother setting an SSL version, we're not trusting it anyway. git-svn-id: https://svn.middleware.georgetown.edu/cpp-xmltooling/branches/REL_1_0@491 de75baf8-a10c-0410-a50a-987c0e22f00f --- diff --git a/xmltooling/util/CurlURLInputStream.cpp b/xmltooling/util/CurlURLInputStream.cpp index 03d86f2..ccf66a4 100644 --- a/xmltooling/util/CurlURLInputStream.cpp +++ b/xmltooling/util/CurlURLInputStream.cpp @@ -78,7 +78,6 @@ 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_TLSv1); curl_easy_setopt(fEasy, CURLOPT_SSL_VERIFYHOST, 0); curl_easy_setopt(fEasy, CURLOPT_SSL_VERIFYPEER, 0); curl_easy_setopt(fEasy, CURLOPT_NOPROGRESS, 1);