Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for SMB2_LOCK (0.24 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

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

         * @param locks the array of lock elements to apply
         */
        public Smb2LockRequest(final Configuration config, final byte[] fileId, final Smb2Lock[] locks) {
            super(config, SMB2_LOCK);
            this.fileId = fileId;
            this.locks = locks;
        }
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.internal.smb2.ServerMessageBlock2Request#createResponse(jcifs.CIFSContext,
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 16 01:32:48 GMT 2025
    - 3.8K bytes
    - Click Count (0)
  2. src/test/java/jcifs/internal/smb2/ServerMessageBlock2Test.java

                assertEquals(0x08, ServerMessageBlock2.SMB2_READ);
                assertEquals(0x09, ServerMessageBlock2.SMB2_WRITE);
                assertEquals(0x0A, ServerMessageBlock2.SMB2_LOCK);
                assertEquals(0x0B, ServerMessageBlock2.SMB2_IOCTL);
                assertEquals(0x0C, ServerMessageBlock2.SMB2_CANCEL);
                assertEquals(0x0D, ServerMessageBlock2.SMB2_ECHO);
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 39.5K bytes
    - Click Count (0)
Back to Top