mirror of
https://github.com/GOSTSec/sgminer
synced 2025-01-11 07:17:58 +00:00
Set the latest network access time on share submission for --net-delay even if we're not delaying that submission for further network access.
This commit is contained in:
parent
4b994b011b
commit
bdec295fee
9
util.c
9
util.c
@ -336,6 +336,9 @@ json_t *json_rpc_call(CURL *curl, const char *url,
|
||||
curl_easy_setopt(curl, CURLOPT_URL, url);
|
||||
curl_easy_setopt(curl, CURLOPT_ENCODING, "");
|
||||
curl_easy_setopt(curl, CURLOPT_FAILONERROR, 1);
|
||||
|
||||
/* Shares are staggered already and delays in submission can be costly
|
||||
* so do not delay them */
|
||||
if (!opt_delaynet || share)
|
||||
curl_easy_setopt(curl, CURLOPT_TCP_NODELAY, 1);
|
||||
curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, all_data_cb);
|
||||
@ -380,7 +383,9 @@ json_t *json_rpc_call(CURL *curl, const char *url,
|
||||
|
||||
curl_easy_setopt(curl, CURLOPT_HTTPHEADER, headers);
|
||||
|
||||
if (opt_delaynet && !share) {
|
||||
if (opt_delaynet) {
|
||||
/* Don't delay share submission, but still track the nettime */
|
||||
if (!share) {
|
||||
long long now_msecs, last_msecs;
|
||||
struct timeval now, last;
|
||||
|
||||
@ -397,8 +402,10 @@ json_t *json_rpc_call(CURL *curl, const char *url,
|
||||
rgtp.tv_nsec = (250 - (now_msecs - last_msecs)) * 1000000;
|
||||
nanosleep(&rgtp, NULL);
|
||||
}
|
||||
}
|
||||
set_nettime();
|
||||
}
|
||||
|
||||
rc = curl_easy_perform(curl);
|
||||
if (rc) {
|
||||
applog(LOG_INFO, "HTTP request failed: %s", curl_err_str);
|
||||
|
Loading…
Reference in New Issue
Block a user