1
0
mirror of https://github.com/GOSTSec/sgminer synced 2025-09-13 14:42:05 +00:00

Longpoll is not supposed to use POST and this could be leading to longpoll failures.

This commit is contained in:
Con Kolivas 2011-07-12 17:16:08 +10:00
parent 76b233a544
commit ad0be6cfbe

1
util.c
View File

@ -255,6 +255,7 @@ json_t *json_rpc_call(CURL *curl, const char *url,
curl_easy_setopt(curl, CURLOPT_USERPWD, userpass);
curl_easy_setopt(curl, CURLOPT_HTTPAUTH, CURLAUTH_BASIC);
}
if (!longpoll)
curl_easy_setopt(curl, CURLOPT_POST, 1);
if (opt_protocol)