Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for lockSequenceNumber (0.58 sec)

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

     * 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;
    
        /**
         * Constructs an SMB2 lock request with the specified parameters.
         *
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 3.8K bytes
    - Viewed (0)
  2. src/test/java/jcifs/internal/smb2/lock/Smb2LockRequestTest.java

            }
    
            @Test
            @DisplayName("Should write lock sequence information correctly")
            void testLockSequenceInformation() {
                // Note: lockSequenceNumber and lockSequenceIndex are private and not settable
                // They default to 0, so we test the default encoding
                byte[] buffer = new byte[256];
                request.writeBytesWireFormat(buffer, 0);
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 25.3K bytes
    - Viewed (0)
Back to top