- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for Negotiate (0.06 sec)
-
src/main/java/jcifs/smb/SmbTransportImpl.java
*/ @Override public byte[] getServerEncryptionKey () { if ( this.negotiated == null ) { return null; } if ( this.negotiated instanceof SmbComNegotiateResponse ) { return ( (SmbComNegotiateResponse) this.negotiated ).getServerData().encryptionKey; } return null; } @Override
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Wed Jan 18 23:47:00 UTC 2023 - 67K bytes - Viewed (0) -
okhttp/src/main/kotlin/okhttp3/OkHttpClient.kt
* protocols. The http/1.1 transport will never be dropped. * * If multiple protocols are specified, [ALPN][alpn] will be used to negotiate a transport. * Protocol negotiation is only attempted for HTTPS URLs. * * [Protocol.HTTP_1_0] is not supported in this set. Requests are initiated with `HTTP/1.1`. If
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sat Apr 06 04:21:33 UTC 2024 - 52K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbSessionImpl.java
do { switch ( state ) { case 10: /* NTLM */ if ( trans.hasCapability(SmbConstants.CAP_EXTENDED_SECURITY) ) { log.debug("Extended security negotiated"); state = 20; /* NTLMSSP */ break; } else if ( getContext().getConfig().isForceExtendedSecurity() ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Nov 14 17:41:04 UTC 2021 - 49K bytes - Viewed (0) -
docs/changelogs/changelog_3x.md
copies of the database. * Fix: Accept cookies for URLs that have an IPv6 address for a host. * Fix: Don't log the protocol (HTTP/1.1, h2) in HttpLoggingInterceptor if the protocol isn't negotiated yet! Previously we'd log HTTP/1.1 by default, and this was confusing. * Fix: Omit the message from MockWebServer's HTTP/2 `:status` header. * Fix: Handle 'Expect: 100 Continue' properly in MockWebServer.
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sun Feb 06 14:55:54 UTC 2022 - 50.8K bytes - Viewed (0)