Move "Content-Type" header setting.

This commit is contained in:
XMRig 2020-03-01 12:57:19 +07:00
parent 616c52f266
commit f0db17be87
No known key found for this signature in database
GPG key ID: 446A53638BE94409
2 changed files with 4 additions and 1 deletions

View file

@ -140,7 +140,6 @@ void xmrig::HttpClient::handshake()
if (!body.empty()) { if (!body.empty()) {
headers.insert({ "Content-Length", std::to_string(body.size()) }); headers.insert({ "Content-Length", std::to_string(body.size()) });
headers.insert({ "Content-Type", "application/json" });
} }
std::stringstream ss; std::stringstream ss;

View file

@ -384,6 +384,10 @@ void xmrig::DaemonClient::send(int method, const char *url, const char *data, si
client->setQuiet(isQuiet()); client->setQuiet(isQuiet());
client->connect(m_pool.host(), m_pool.port()); client->connect(m_pool.host(), m_pool.port());
if (method != HTTP_GET) {
client->headers.insert({ "Content-Type", "application/json" });
}
} }