Merge pull request #18316 from Noshyaar/http

[DOCS] add HTTPRequest.request return values
This commit is contained in:
Max Hilbrunner
2018-04-20 12:04:44 +02:00
committed by GitHub
2 changed files with 3 additions and 1 deletions
+1 -1
View File
@@ -105,7 +105,7 @@ IP_Address IP_Unix::_resolve_hostname(const String &p_hostname, Type p_type) {
int s = getaddrinfo(p_hostname.utf8().get_data(), NULL, &hints, &result);
if (s != 0) {
ERR_PRINT("getaddrinfo failed!");
ERR_PRINT("getaddrinfo failed! Cannot resolve hostname.");
return IP_Address();
};