- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for requestPasswordAuthentication (0.2 sec)
-
okhttp/src/main/kotlin/okhttp3/internal/authenticator/JavaNetAuthenticator.kt
} val dns = route?.address?.dns ?: defaultDns val auth = if (proxyAuthorization) { val proxyAddress = proxy.address() as InetSocketAddress Authenticator.requestPasswordAuthentication( proxyAddress.hostName, proxy.connectToInetAddress(url, dns), proxyAddress.port, url.scheme, challenge.realm, challenge.scheme,
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 3.2K bytes - Viewed (0) -
src/main/java/jcifs/smb1/http/NtlmHttpURLConnection.java
port = "https".equalsIgnoreCase(protocol) ? 443 : 80; } PasswordAuthentication auth = Authenticator.requestPasswordAuthentication(null, port, protocol, "", authMethod); if (auth == null) return null; user = auth.getUserName();
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 20.4K bytes - Viewed (0) -
src/main/java/jcifs/http/NtlmHttpURLConnection.java
if ( port == -1 ) { port = "https".equalsIgnoreCase(protocol) ? 443 : 80; } PasswordAuthentication auth = Authenticator.requestPasswordAuthentication(null, port, protocol, "", this.authMethod); if ( auth == null ) return null; user = auth.getUserName();
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 25.5K bytes - Viewed (0)