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

Shorten the time before keepalive probes are sent out and how frequently they're sent with stratum curls.

This commit is contained in:
Con Kolivas 2013-03-07 22:02:51 +11:00
parent d7c4be30ba
commit 09c02b1c7b

10
util.c
View File

@ -200,8 +200,8 @@ out:
#if CURL_HAS_KEEPALIVE
static void keep_curlalive(CURL *curl)
{
const int tcp_keepidle = 60;
const int tcp_keepintvl = 60;
const int tcp_keepidle = 45;
const int tcp_keepintvl = 30;
const long int keepalive = 1;
curl_easy_setopt(curl, CURLOPT_TCP_KEEPALIVE, keepalive);
@ -216,10 +216,10 @@ static void keep_alive(CURL *curl, __maybe_unused SOCKETTYPE fd)
#else
static void keep_sockalive(SOCKETTYPE fd)
{
const int tcp_keepidle = 60;
const int tcp_keepintvl = 60;
const int tcp_keepidle = 45;
const int tcp_keepintvl = 30;
const int keepalive = 1;
const int tcp_keepcnt = 5;
const int tcp_keepcnt = 1;
setsockopt(fd, SOL_SOCKET, SO_KEEPALIVE, &keepalive, sizeof(keepalive));
# ifdef __linux