From 6a29384b5c4673ffd6d0bc5075320392797bdf34 Mon Sep 17 00:00:00 2001 From: Anonymous275 Date: Fri, 27 Nov 2020 10:34:13 +0200 Subject: [PATCH] cleaned comment --- src/Network/Http.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/Network/Http.cpp b/src/Network/Http.cpp index 19b3b04..8af28c4 100644 --- a/src/Network/Http.cpp +++ b/src/Network/Http.cpp @@ -36,8 +36,6 @@ std::string PostHTTP(const std::string& IP, const std::string& Fields) { Assert(curl); if (curl) { curl_easy_setopt(curl, CURLOPT_URL, IP.c_str()); - /*curl_easy_setopt(curl, CURLOPT_URL, "https://95.216.35.232/heartbeatv2"); - curl_easy_setopt(curl, CURLOPT_PORT, 3600);*/ curl_easy_setopt(curl, CURLOPT_POSTFIELDSIZE, Fields.size()); curl_easy_setopt(curl, CURLOPT_POSTFIELDS, Fields.c_str()); curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, WriteCallback);