- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 77 for negotiation (0.05 sec)
-
docs/SMB3_IMPLEMENTATION_PLAN.md
- [ ] Implement RDMA capability detection - [ ] Create RDMA negotiation context - [ ] Implement RDMA transport layer - [ ] Add RDMA buffer registration - [ ] Create RDMA read/write operations - [ ] Implement RDMA credits management - [ ] Add fallback to TCP when RDMA unavailable #### 5.3 Integration Points - Create new transport type alongside TCP - Modify negotiation to include RDMA contexts - Update read/write operations for RDMA
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 10.7K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/nego/Smb2NegotiateRequest.java
/** * Constructs an SMB2 negotiate request with the specified configuration and security mode. * * @param config the configuration for this request * @param securityMode the security mode flags for negotiation */ public Smb2NegotiateRequest(final Configuration config, final int securityMode) { super(config, SMB2_NEGOTIATE); this.securityMode = securityMode; if (!config.isDfsDisabled()) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 9.3K bytes - Viewed (0) -
src/main/java/jcifs/spnego/SpnegoException.java
*/ package jcifs.spnego; import jcifs.CIFSException; /** * Exception thrown during SPNEGO authentication processing. * * This exception indicates an error in SPNEGO token processing, * negotiation, or authentication flow. * * @author mbechler */ public class SpnegoException extends CIFSException { /** * */ private static final long serialVersionUID = -4591854684249021395L;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComSessionSetupAndXResponse.java
*/ public final boolean isLoggedInAsGuest() { return this.isLoggedInAsGuest; } /** * Returns the security blob received from the server during extended security negotiation. * * @return the blob */ public final byte[] getBlob() { return this.blob; } @Override
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.7K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/Smb2Constants.java
/** * SMB 3.1.1 dialect (Windows 10/Server 2016) */ public static final int SMB2_DIALECT_0311 = 0x0311; /** * SMB2 wildcard dialect for negotiation */ public static final int SMB2_DIALECT_ANY = 0x02FF; /** * Server supports DFS */ public static final int SMB2_GLOBAL_CAP_DFS = 0x1; /** * Server supports leasing
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 05:11:12 UTC 2025 - 4.5K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/nego/Smb2RdmaTransformCapabilitiesContext.java
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. */ public class Smb2RdmaTransformCapabilitiesContext implements NegotiateContextRequest, NegotiateContextResponse {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:12:28 UTC 2025 - 4.4K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/rdma/disni/DisniRdmaConnection.java
} } @Override public RdmaNegotiateResponse negotiate(RdmaNegotiateRequest request) throws IOException { // Simulate successful negotiation for skeleton implementation RdmaNegotiateResponse response = new RdmaNegotiateResponse(); response.setStatus(0); // Success response.setSelectedVersion(request.getMaxVersion());
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 05:11:12 UTC 2025 - 10.2K bytes - Viewed (0) -
src/main/java/jcifs/smb/NtlmContext.java
private static final Logger log = LoggerFactory.getLogger(NtlmContext.class); /** * The NTLMSSP OID (1.3.6.1.4.1.311.2.2.10) used in SPNEGO negotiation. */ public static ASN1ObjectIdentifier NTLMSSP_OID; static { try { NTLMSSP_OID = new ASN1ObjectIdentifier("1.3.6.1.4.1.311.2.2.10");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 17.3K bytes - Viewed (0) -
src/main/java/jcifs/config/BaseConfiguration.java
/** Whether to use NT status codes instead of DOS error codes */ protected boolean useNtStatus = true; /** Whether to use extended security negotiation */ protected boolean useExtendedSecurity = true; /** Force use of extended security negotiation */ protected boolean forceExtendedSecurity = false; /** Whether to negotiate only SMB2 or higher protocols */ protected boolean smb2OnlyNegotiation = false;
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/Configuration.java
/** * Use SMB2 non-backward compatible negotiation style * * Property {@code jcifs.smb.client.useSMB2Negotiation} (boolean, default false) * * @return whether to use non-backward compatible protocol negotiation */ boolean isUseSMB2OnlyNegotiation(); /** * Enforce secure negotiation *
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 25.4K bytes - Viewed (0)