Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for CurrentLeaseState (0.28 sec)

  1. src/main/java/jcifs/internal/smb2/lock/Smb2LeaseBreakNotification.java

            System.arraycopy(buffer, bufferIndex, keyBytes, 0, 16);
            this.leaseKey = new Smb2LeaseKey(keyBytes);
            bufferIndex += 16;
    
            // CurrentLeaseState (4 bytes)
            this.currentLeaseState = SMBUtil.readInt4(buffer, bufferIndex);
            bufferIndex += 4;
    
            // NewLeaseState (4 bytes)
            this.newLeaseState = SMBUtil.readInt4(buffer, bufferIndex);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 02:21:31 UTC 2025
    - 4.8K bytes
    - Viewed (0)
  2. docs/smb3-features/01-smb3-lease-design.md

            dstIndex += 4;
            
            // LeaseKey (16 bytes)
            System.arraycopy(leaseKey.getKey(), 0, dst, dstIndex, 16);
            dstIndex += 16;
            
            // CurrentLeaseState (4 bytes)
            writeInt4(dst, dstIndex, currentLeaseState);
            dstIndex += 4;
            
            // NewLeaseState (4 bytes)
            writeInt4(dst, dstIndex, newLeaseState);
            dstIndex += 4;
            
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 22K bytes
    - Viewed (0)
Back to top