diff --git a/src/system/httptool.cpp b/src/system/httptool.cpp index 72314f10d..772d22161 100644 --- a/src/system/httptool.cpp +++ b/src/system/httptool.cpp @@ -91,6 +91,7 @@ printf("url is %s\n", URL.c_str()); curl_easy_setopt(curl, CURLOPT_USERAGENT, userAgent.c_str()); curl_easy_setopt(curl, CURLOPT_NOSIGNAL, (long)1); curl_easy_setopt(curl, CURLOPT_TIMEOUT, timeout); //NI + curl_easy_setopt(curl, CURLOPT_SSL_VERIFYPEER, false); //NI curl_easy_setopt(curl, CURLOPT_CONNECTTIMEOUT, connecttimeout); //NI curl_easy_setopt(curl, CURLOPT_FAILONERROR, true); #ifdef DEBUG