- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for Smb2LeaseBreakNotification (0.13 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/main/java/jcifs/internal/smb2/lock/Smb2LeaseBreakNotification.java
import jcifs.internal.smb2.lease.Smb2LeaseKey; import jcifs.internal.util.SMBUtil; /** * SMB2 Lease Break Notification * * MS-SMB2 2.2.23 */ public class Smb2LeaseBreakNotification extends ServerMessageBlock2Response { private int structureSize; private int flags; private Smb2LeaseKey leaseKey; private int currentLeaseState; private int newLeaseState;Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 23 02:21:31 GMT 2025 - 4.8K bytes - Click Count (0) -
docs/smb3-features/01-smb3-lease-design.md
} ``` ### 6.3 Transport Layer Integration ```java // In SmbTransport.java private void handleIncomingMessage(ServerMessageBlock2 msg) { if (msg instanceof Smb2LeaseBreakNotification) { Smb2LeaseBreakNotification breakNotif = (Smb2LeaseBreakNotification) msg; // Get lease manager from session LeaseManager leaseManager = session.getLeaseManager(); // Handle the lease break
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 02:53:50 GMT 2025 - 22K bytes - Click Count (0)