我正在尝试在两个 Android 设备之间创建 IPv6 TCP 连接。但是创建套接字总是失败。
如果我这样实例化它:
Inet6Address dest = (Inet6Address) InetAddress.getByName(addressString);
Socket socket = new Socket(dest, portNumber);
我得到以下异常:
java.net.ConnectException: failed to connect to *address* (port *portNumber*): connect failed: EINVAL (Invalid argument)
如果我像这样实例化我的 IPv6Address 对象:
Enumeration<NetworkInterface> networkInterfaces = NetworkInterface.getNetworkInterfaces();
NetworkInterface wifiInterface = null;
while (networkInterfaces.hasMoreElements()) {
NetworkInterface networkInterface = networkInterfaces.nextElement();
if (networkInterface.getDisplayName().equals("wlan0") || networkInterface.getDisplayName().equals("eth0")) {
wifiInterface = networkInterface;
break;
}
}
Inet6Address dest = Inet6Address.getByAddress(null, addressBytes, wifiInterface );
Socket socket = new Socket(dest, portNumber);
调用 Socket 构造函数时出现此错误:
java.net.ConnectException: failed to connect to *address* (port *portNumber*): connect failed: EADDRNOTAVAIL (Cannot assign requested address)
这发生在带有 Jelly Bean 的 Galaxy Nexus 和带有 Gingerbread 的 Nexus One 上。
难道我做错了什么?创建这样的套接字的正确方法是什么?
另外:这篇文章建议使用构造函数
Inet6Address getByAddress (String host, byte[] addr, int scope_id)
在这种情况下,我必须使用什么作为 scope_id?