Browse Source

Set the latest network access time on share submission for --net-delay even if we're not delaying that submission for further network access.

nfactor-troky
Con Kolivas 13 years ago
parent
commit
bdec295fee
  1. 9
      util.c

9
util.c

@ -336,6 +336,9 @@ json_t *json_rpc_call(CURL *curl, const char *url, @@ -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, @@ -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, @@ -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…
Cancel
Save