We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7b67cb3 commit 40e9492Copy full SHA for 40e9492
junixsocket-common/src/test/java/org/newsclub/net/unix/java/JavaAddressSpecifics.java
@@ -53,7 +53,13 @@ public static SocketAddress wildcardBindAddress() throws IOException {
53
54
@Override
55
public SocketAddress newTempAddress() throws IOException {
56
- return wildcardBindAddress();
+ SocketAddress bindAddr = new InetSocketAddress(InetAddress.getLoopbackAddress(), 0);
57
+ try (ServerSocket sock = new ServerSocket()) {
58
+ sock.bind(bindAddr);
59
+ return sock.getLocalSocketAddress();
60
+ } catch (BindException e) {
61
+ throw new TestAbortedException("Cannot bind to " + bindAddr, e);
62
+ }
63
}
64
65
0 commit comments