- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for getStandardLeaseSize (0.28 seconds)
-
src/main/java/jcifs/internal/smb2/lease/DirectoryLeaseContext.java
this.notificationFilter = notificationFilter; } /** * Get the standard lease size for encoding/decoding * @return the standard lease context size */ protected int getStandardLeaseSize() { // Standard lease V2 size: LeaseKey(16) + LeaseState(4) + Flags(4) + reserved fields return 32; } @Override public int size() { // Context header: 16 bytesCreated: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 23 02:21:31 GMT 2025 - 9.4K bytes - Click Count (0) -
docs/smb3-features/04-directory-leasing-design.md
@Override public void decode(byte[] buffer, int offset, int length) { super.decode(buffer, offset, length); if (length > getStandardLeaseSize()) { // Decode directory-specific data int dataOffset = offset + getStandardLeaseSize(); int scopeOrdinal = readInt4(buffer, dataOffset); this.cacheScope = DirectoryCacheScope.values()[scopeOrdinal];Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 02:53:50 GMT 2025 - 36.2K bytes - Click Count (0)