RFR: JDK-8260925: HttpsURLConnection does not work with other JSSE provider.

2021-03-01 Thread Vyom Tewari
HttpsURLConnection, works with SunJSSE provider but does not work with other JSSE provider. In case of SunJSSE , HttpsURLConnection set the host name as follows s = (SSLSocket)serverSocket; if (s instanceof SSLSocketImpl) { ((SSLSocketImpl)s).setHost(host); } But in case of oth

Re: RFR: 8253100: Fix "no comment" warnings in java.base/java.net [v3]

2021-03-01 Thread Daniel Fuchs
On Sat, 27 Feb 2021 10:04:28 GMT, Alan Bateman wrote: >> Daniel Fuchs has updated the pull request incrementally with one additional >> commit since the last revision: >> >> Fixed @throws to conform to the style of other @throws in java.net.URI > > Looks fine, just a few formatting nits. Tha

Re: RFR: 8253100: Fix "no comment" warnings in java.base/java.net [v5]

2021-03-01 Thread Daniel Fuchs
> Hi, > > Please find here a change that fixes "no comment" warnings generated by > `javadoc -Xdoclint` for `java.base/java.net` Daniel Fuchs has updated the pull request incrementally with one additional commit since the last revision: Fixed trailing whitespaces - Changes:

Re: RFR: 8253100: Fix "no comment" warnings in java.base/java.net [v4]

2021-03-01 Thread Daniel Fuchs
> Hi, > > Please find here a change that fixes "no comment" warnings generated by > `javadoc -Xdoclint` for `java.base/java.net` Daniel Fuchs has updated the pull request with a new target base due to a merge or a rebase. The incremental webrev excludes the unrelated changes brought in by the

Integrated: 8262195: Harden tests that use the HostsFileNameService (jdk.net.hosts.file property)

2021-03-01 Thread Conor Cleary
On Wed, 24 Feb 2021 10:24:06 GMT, Conor Cleary wrote: > A number of net tests use a > **[HostsFileNameService](https://github.com/openjdk/jdk/blob/382e38dd246596ec94a1f1ce0e0f9e87f53366c7/src/java.base/share/classes/java/net/InetAddress.java#L955)** > to verify either the functionality of this