2

我已经查看了有关此问题的其他答案,但他们大多声明setReuseAddress (true)在绑定套接字之前调用。但是我正在这样做,它仍然不起作用,有人可以在这里帮助我吗?

SocketChannel tunnel = SocketChannel.open();

if (!protect(tunnel.socket())){
throw new IllegalStateException("Can not protect tunnel");}

Log.i("TAG", "test");
tunnel.socket().setReuseAddress(true);
tunnel.socket().bind(new InetSocketAddress(localAddress, localPort));
Log.i("TAG", "bind test");
tunnel.connect(new InetSocketAddress(destAddress, destPort));
tunnel.configureBlocking(false);

packet.position(0);
packet.limit(length);
Log.i("TAG", "schreibe: " + tunnel.write(packet));
packet.clear();
4

1 回答 1

0

它不适用于 TCP,除非同一端口上的先前套接字绑定到不包括 0.0.0.0 的不同 IP 地址上。窗户一如既往地除外。

于 2013-09-16T12:15:55.787 回答