Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for writePayload (0.41 sec)

  1. docs/smb3-features/01-smb3-lease-design.md

        private int currentLeaseState;
        private int newLeaseState;
        private int breakReason;
        private int accessMaskHint;
        private int shareAccessHint;
        
        @Override
        protected int writePayload(byte[] dst, int dstIndex) {
            int start = dstIndex;
            
            // StructureSize (2 bytes) - must be 44
            writeInt2(dst, dstIndex, 44);
            dstIndex += 2;
            
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 22K bytes
    - Viewed (0)
  2. docs/smb3-features/05-rdma-smb-direct-design.md

    public void addRdmaChannelInfo(int remoteKey, long address, int length) {
        this.rdmaChannelInfo = new RdmaChannelInfo(remoteKey, address, length);
    }
    
    @Override
    protected int writePayload(byte[] dst, int dstIndex) {
        int written = super.writePayload(dst, dstIndex);
        
        if (rdmaChannelInfo != null) {
            // Add RDMA read channel info
            writeInt4(dst, dstIndex + written, rdmaChannelInfo.getRemoteKey());
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 35.9K bytes
    - Viewed (0)
Back to top