Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for SmbDirectNegotiateRequest (0.08 sec)

  1. src/main/java/jcifs/internal/smb2/rdma/SmbDirectNegotiateRequest.java

    /**
     * SMB Direct Negotiate Request message.
     *
     * As per MS-SMBD 2.2.1 - SMB_DIRECT_NEGOTIATE_REQUEST
     * This message is sent to negotiate SMB Direct protocol parameters.
     */
    public class SmbDirectNegotiateRequest {
    
        // Protocol constants
        /** Minimum supported SMB Direct protocol version (1.0) */
        public static final int MIN_VERSION = 0x0100; // SMB Direct 1.0
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 24 00:12:28 UTC 2025
    - 5.4K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb2/rdma/SmbDirectNegotiateResponse.java

         */
        public SmbDirectNegotiateResponse() {
            // Initialize with defaults
            this.minVersion = SmbDirectNegotiateRequest.MIN_VERSION;
            this.maxVersion = SmbDirectNegotiateRequest.MAX_VERSION;
            this.negotiatedVersion = SmbDirectNegotiateRequest.MAX_VERSION;
            this.creditsGranted = 0;
            this.creditsRequested = RdmaCapabilities.DEFAULT_SEND_CREDIT_TARGET;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 24 00:12:28 UTC 2025
    - 9.3K bytes
    - Viewed (0)
Back to top