Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for addRdmaChannelInfo (0.13 sec)

  1. src/main/java/jcifs/internal/smb2/io/Smb2ReadRequest.java

         *
         * @param remoteKey remote memory key
         * @param address remote memory address
         * @param length length of memory region
         */
        public void addRdmaChannelInfo(int remoteKey, long address, int length) {
            this.rdmaChannelInfo = new RdmaChannelInfo(remoteKey, address, length);
            this.channel = Smb2Constants.SMB2_CHANNEL_RDMA_V1;
        }
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 05:11:12 UTC 2025
    - 7.8K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb2/io/Smb2WriteRequest.java

         *
         * @param remoteKey remote memory key
         * @param address remote memory address
         * @param length length of memory region
         */
        public void addRdmaChannelInfo(int remoteKey, long address, int length) {
            this.rdmaChannelInfo = new RdmaChannelInfo(remoteKey, address, length);
            this.channel = Smb2Constants.SMB2_CHANNEL_RDMA_V1;
        }
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 05:11:12 UTC 2025
    - 7.1K bytes
    - Viewed (0)
Back to top