jdk11u build failure on Windows

2022-01-10 Thread Vyom Tiwari
Hi, I am facing the build issue with OpenJDK11(jdk11u). I am trying to build jdk11u on Windows and I am getting the below error. ./src/java.base/windows/native/libnet/net_util_md.c(792): error C2065: 'TCP_INITIAL_RTO_NO_SYN_RETRANSMISSIONS': undeclared identifier make[3]:

Re: RFR: 8275640 (win) java.net.NetworkInterface issues with IPv6-only environments [v3]

2022-01-10 Thread Mark Sheppard
On Mon, 10 Jan 2022 07:37:24 GMT, Daniel Jelinski wrote: >> src/java.base/windows/native/libnet/NetworkInterface_winXP.c line 256: >> >>> 254: >>> 255: ret = enumInterfaces(env, netifPP); >>> 256: if (ret == -1) { >> >> this change is questionable: enumInterfaces returns -2 to allows

Integrated: 8274809: Update java.base classes to use try-with-resources

2022-01-10 Thread Andrey Turbanov
On Tue, 5 Oct 2021 09:36:23 GMT, Andrey Turbanov wrote: > 8274809: Update java.base classes to use try-with-resources This pull request has now been integrated. Changeset: dee447f8 Author:Andrey Turbanov Committer: Daniel Fuchs URL:

Re: RFR: JDK-8243376: java.net.SocketPermission.implies(Permission p) spec is mismatching with implementation [v9]

2022-01-10 Thread Pushkar N Kulkarni
On Wed, 10 Mar 2021 17:32:30 GMT, Jayashree S Kumar wrote: >> Issue >> >> https://bugs.openjdk.java.net/browse/JDK-8243376 >> >> Problem >> >> The scenario is: >> - Some specified target hostname resolves to two IP addresses (always the >> same address pair). >> - The DNS resolved order

Re: RFR: JDK-8243376: java.net.SocketPermission.implies(Permission p) spec is mismatching with implementation [v9]

2022-01-10 Thread Pushkar N Kulkarni
On Wed, 10 Mar 2021 17:32:30 GMT, Jayashree S Kumar wrote: >> Issue >> >> https://bugs.openjdk.java.net/browse/JDK-8243376 >> >> Problem >> >> The scenario is: >> - Some specified target hostname resolves to two IP addresses (always the >> same address pair). >> - The DNS resolved order

Re: RFR: 8275640 (win) java.net.NetworkInterface issues with IPv6-only environments [v3]

2022-01-10 Thread Daniel Jelinski
On Sat, 8 Jan 2022 19:00:52 GMT, Mark Sheppard wrote: >> Daniel Jelinski has updated the pull request incrementally with one >> additional commit since the last revision: >> >> Address problems reported by clang-tidy > > src/java.base/windows/native/libnet/NetworkInterface_winXP.c line 271:

Re: RFR: 8275640 (win) java.net.NetworkInterface issues with IPv6-only environments [v3]

2022-01-10 Thread Daniel Jelinski
On Sat, 8 Jan 2022 09:11:05 GMT, Daniel Jelinski wrote: >> Clean up of various issues related to error handling and memory management > > Daniel Jelinski has updated the pull request incrementally with one > additional commit since the last revision: > > Address problems reported by