我正在尝试找出私有IP地址。 我在MacBook上访问了Android移动热点。
string hostname = Dns.GetHostName();
IPAddress[] ips;
ips = Dns.GetHostAddresses(hostname);
我的Galaxy Note8(Android 7.1)正在运行。 但是我的Galaxy Note8(Android 8.0)无法正常工作。
SocketException: No such host is known
System.Net.Dns.GetHostByName (System.String hostName)
System.Net.Dns.GetHostEntry (System.String hostNameOrAddress)
System.Net.Dns.GetHostAddresses (System.String hostNameOrAddress)
Server.GetIP () (at Assets/Server.cs:30)
hostname(Dns.GetHostName())
打印为192.168.nate.com
我想知道为什么。