- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for setHostnameVerifier (0.09 sec)
-
mockwebserver-deprecated/src/test/java/okhttp3/mockwebserver/MockWebServerTest.kt
val url = server.url("/") val connection = url.toUrl().openConnection() as HttpsURLConnection connection.setSSLSocketFactory(handshakeCertificates.sslSocketFactory()) connection.setHostnameVerifier(RecordingHostnameVerifier()) assertThat(connection.getResponseCode()).isEqualTo(HttpURLConnection.HTTP_OK) val reader = BufferedReader(InputStreamReader(connection.inputStream, StandardCharsets.UTF_8))
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 21.9K bytes - Viewed (0) -
src/main/java/jcifs/http/NtlmHttpURLConnection.java
if ( this.connection instanceof HttpsURLConnection ) { if ( hv != null ) { ( (HttpsURLConnection) this.connection ).setHostnameVerifier(hv); } if ( ssf != null ) { ( (HttpsURLConnection) this.connection ).setSSLSocketFactory(ssf); } }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 25.5K bytes - Viewed (0)