- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for Smb2LockRequest (0.52 sec)
-
src/main/java/jcifs/internal/smb2/lock/Smb2LockRequest.java
import jcifs.internal.util.SMBUtil; /** * SMB2 Lock request message. This command is used to request byte-range locks * on portions of a file. * * @author mbechler * */ public class Smb2LockRequest extends ServerMessageBlock2Request<Smb2LockResponse> implements RequestWithFileId { private int lockSequenceNumber; private int lockSequenceIndex; private byte[] fileId; private final Smb2Lock[] locks;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3.8K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/lock/Smb2LockRequestTest.java
/** * Test class for Smb2LockRequest functionality */ @DisplayName("Smb2LockRequest Tests") class Smb2LockRequestTest { @Mock private Configuration mockConfig; @Mock private CIFSContext mockContext; @Mock private Smb2Lock mockLock; private byte[] testFileId; private Smb2Lock[] testLocks; private Smb2LockRequest request; @BeforeEach
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 25.3K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/RequestWithFileIdTest.java
import jcifs.internal.smb2.io.Smb2ReadRequest; import jcifs.internal.smb2.io.Smb2WriteRequest; import jcifs.internal.smb2.ioctl.Smb2IoctlRequest; import jcifs.internal.smb2.lock.Smb2Lock; import jcifs.internal.smb2.lock.Smb2LockRequest; /** * Test class for RequestWithFileId interface. * Tests the interface contract and various implementations. */ @ExtendWith(MockitoExtension.class) @DisplayName("RequestWithFileId Interface Tests")
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.9K bytes - Viewed (0)