Deindent HTTPFetchRequest::HTTPFetchRequest()

This commit is contained in:
ShadowNinja 2014-01-16 19:33:02 -05:00
parent 64c0e40605
commit b11b48ec07

@ -42,24 +42,24 @@ with this program; if not, write to the Free Software Foundation, Inc.,
JMutex g_httpfetch_mutex; JMutex g_httpfetch_mutex;
std::map<unsigned long, std::list<HTTPFetchResult> > g_httpfetch_results; std::map<unsigned long, std::list<HTTPFetchResult> > g_httpfetch_results;
HTTPFetchRequest::HTTPFetchRequest() HTTPFetchRequest::HTTPFetchRequest()
{ {
url = ""; url = "";
caller = HTTPFETCH_DISCARD; caller = HTTPFETCH_DISCARD;
request_id = 0; request_id = 0;
timeout = g_settings->getS32("curl_timeout"); timeout = g_settings->getS32("curl_timeout");
connect_timeout = timeout * 5; connect_timeout = timeout * 5;
useragent = std::string("Minetest/") + minetest_version_hash + " "; useragent = std::string("Minetest/") + minetest_version_hash + " ";
#ifdef _WIN32 #ifdef _WIN32
useragent += "(Windows)"; useragent += "(Windows)";
#else #else
struct utsname osinfo; struct utsname osinfo;
uname(&osinfo); uname(&osinfo);
useragent += std::string("(") + osinfo.sysname + "/" useragent += std::string("(") + osinfo.sysname + "/"
+ osinfo.release + " " + osinfo.machine + ")"; + osinfo.release + " " + osinfo.machine + ")";
#endif #endif
} }
static void httpfetch_deliver_result(const HTTPFetchResult &fetchresult) static void httpfetch_deliver_result(const HTTPFetchResult &fetchresult)