1
0
mirror of https://github.com/GOSTSec/sgminer synced 2025-01-11 07:17:58 +00:00

Probe but don't set the timeout to 15 seconds as some networks take a long time to timeout.

This commit is contained in:
ckolivas 2012-02-04 20:04:49 +11:00
parent 1832b20c40
commit 13fa5772ad

5
util.c
View File

@ -321,11 +321,8 @@ json_t *json_rpc_call(CURL *curl, const char *url,
/* it is assumed that 'curl' is freshly [re]initialized at this pt */ /* it is assumed that 'curl' is freshly [re]initialized at this pt */
if (probe) { if (probe)
probing = !pool->probed; probing = !pool->probed;
/* Probe for only 15 seconds */
timeout = 15;
}
curl_easy_setopt(curl, CURLOPT_TIMEOUT, timeout); curl_easy_setopt(curl, CURLOPT_TIMEOUT, timeout);
#if 0 /* Disable curl debugging since it spews to stderr */ #if 0 /* Disable curl debugging since it spews to stderr */