浏览代码

Explicitily unsed AI_NUMERICHOST flag to fix HTML5

(cherry picked from commit f863c0ca14111d4bab06604fb4e2bf42fc83f0da)
Fabio Alessandrelli 8 年之前
父节点
当前提交
82b7fca937
共有 1 个文件被更改,包括 1 次插入0 次删除
  1. 1 0
      drivers/unix/ip_unix.cpp

+ 1 - 0
drivers/unix/ip_unix.cpp

@@ -100,6 +100,7 @@ IP_Address IP_Unix::_resolve_hostname(const String &p_hostname, Type p_type) {
 		hints.ai_family = AF_UNSPEC;
 		hints.ai_flags = AI_ADDRCONFIG;
 	};
+	hints.ai_flags &= !AI_NUMERICHOST;
 
 	int s = getaddrinfo(p_hostname.utf8().get_data(), NULL, &hints, &result);
 	if (s != 0) {