- Sort Score
- Result 10 results
- Languages All
Results 41 - 50 of 95 for negotiate2 (0.69 sec)
-
src/main/java/jcifs/smb/SmbUnsupportedOperationException.java
/** * Constructs a new SmbUnsupportedOperationException with a default message */ public SmbUnsupportedOperationException() { super("Operation is not supported with the negotiated capabilities"); } /** * Constructs a new SmbUnsupportedOperationException with the specified message * @param msg the detail message */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 1.6K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTreeImpl.java
try { resp = send(req, RequestParam.NO_RETRY); } catch (final SMBSignatureValidationException e) { throw new SMBProtocolDowngradeException("Signature error during negotiate validation", e); } catch (final SmbException e) { if (log.isDebugEnabled()) { log.debug(String.format("VALIDATE_NEGOTIATE_INFO response code 0x%x", e.getNtStatus())); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 30K bytes - Viewed (0) -
src/test/java/jcifs/smb/compression/CompressionNegotiateContextTest.java
import jcifs.config.PropertyConfiguration; import jcifs.internal.SMBProtocolDecodingException; import jcifs.internal.smb2.nego.CompressionNegotiateContext; /** * Comprehensive tests for SMB3 compression negotiate context. */ public class CompressionNegotiateContextTest { private Configuration config; private CompressionNegotiateContext context; @BeforeEach public void setUp() throws Exception {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 5.6K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/platform/Platform.kt
) { } /** Called after the TLS handshake to release resources allocated by [configureTlsExtensions]. */ open fun afterHandshake(sslSocket: SSLSocket) { } /** Returns the negotiated protocol, or null if no protocol was negotiated. */ open fun getSelectedProtocol(sslSocket: SSLSocket): String? = null /** For MockWebServer. This returns the inbound SNI names. */
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Mon Jul 28 07:33:49 UTC 2025 - 8.1K bytes - Viewed (0) -
src/main/java/jcifs/config/BaseConfiguration.java
protected Set<String> disallowCompound; /** Minimum SMB dialect version to negotiate */ protected DialectVersion minVersion; /** Maximum SMB dialect version to negotiate */ protected DialectVersion maxVersion; /** Whether to require secure negotiate validation */ protected boolean requireSecureNegotiate = true; /** Whether to send NTLM target name during authentication */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 36.5K bytes - Viewed (0) -
src/main/java/jcifs/http/NtlmHttpURLConnection.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 25.6K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/rdma/RdmaNegotiateRequest.java
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs.internal.smb2.rdma; /** * RDMA negotiation request parameters. * * Used during RDMA connection establishment to negotiate * protocol version and connection parameters. */ public class RdmaNegotiateRequest { private int minVersion; private int maxVersion; private int creditsRequested; private int preferredSendSize;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 05:11:12 UTC 2025 - 4K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/rdma/RdmaNegotiateResponse.java
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs.internal.smb2.rdma; /** * RDMA negotiation response parameters. * * Contains the negotiated parameters returned by the RDMA peer * during connection establishment. */ public class RdmaNegotiateResponse { private int status; private int selectedVersion; private int creditsGranted;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 05:11:12 UTC 2025 - 4.1K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/Trans2GetDfsReferralResponse.java
final int start = bufferIndex; pathConsumed = readInt2(buffer, bufferIndex); bufferIndex += 2; /* Samba 2.2.8a will reply with Unicode paths even though * ASCII is negotiated so we must use flags2 (probably * should anyway). */ if ((flags2 & FLAGS2_UNICODE) != 0) { pathConsumed /= 2; } numReferrals = readInt2(buffer, bufferIndex);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 5.2K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/nego/Smb2RdmaTransformCapabilitiesContext.java
*/ package jcifs.internal.smb2.nego; import jcifs.internal.SMBProtocolDecodingException; import jcifs.internal.smb2.Smb2Constants; import jcifs.internal.util.SMBUtil; /** * SMB2 RDMA Transform Capabilities negotiate context. * * This context is used during SMB2 negotiation to indicate RDMA transform * capabilities when SMB Direct is supported by the client and server. */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:12:28 UTC 2025 - 4.4K bytes - Viewed (0)